18.0 vanilla
|
Before Width: | Height: | Size: 188 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 737 B |
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 8.6 KiB |
|
|
@ -1,11 +1,3 @@
|
|||
|
||||
.oe_module_icon {
|
||||
width: 50px;
|
||||
max-height: 50px;
|
||||
max-width: 23%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.oe_module_flag {
|
||||
position: absolute;
|
||||
left: 12px;
|
||||
|
|
@ -14,18 +6,6 @@
|
|||
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.oe_module_desc {
|
||||
font-size: 13px;
|
||||
padding-left: 10px;
|
||||
width: 77%;
|
||||
}
|
||||
|
||||
.o_kanban_view.o_modules_kanban .o_kanban_renderer .oe_module_vignette,
|
||||
.o_modules_field .o_modules_kanban .oe_module_vignette {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.o_kanban_view.o_modules_kanban .o_kanban_renderer .o_kanban_record .o_dropdown_kanban,
|
||||
.o_modules_field .o_modules_kanban .o_kanban_renderer .o_kanban_record .o_dropdown_kanban {
|
||||
visibility: visible;
|
||||
|
|
@ -42,31 +22,6 @@
|
|||
--KanbanRecord-width-small: 280px;
|
||||
}
|
||||
|
||||
.oe_module_name > span {
|
||||
color: #999999;
|
||||
min-height: 26px;
|
||||
line-height: 1.1;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.oe_module_desc p {
|
||||
margin: 3px 0 3px;
|
||||
}
|
||||
|
||||
.oe_module_desc > h4 {
|
||||
margin-right: 20px;
|
||||
|
||||
max-width: 100%;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.oe_module_desc {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.o_module_form.o_form_view .oe_avatar > img {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,3 @@
|
|||
.o_kanban_view .o_res_partner_kanban {
|
||||
.oe_kanban_action_a:hover > .badge {
|
||||
background-color: $o-brand-primary;
|
||||
color: white;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.o_partner_merge_wizard {
|
||||
.o_form_sheet {
|
||||
padding: 12px !important;
|
||||
|
|
@ -14,9 +6,3 @@
|
|||
--gutter-x: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// This is an ugly workaround to prevent having ugly borders in the Password confirmation dialog
|
||||
// TODO: remove me in master
|
||||
.modal .o_form_view .o_form_sheet_bg.bg-primary {
|
||||
--background-color: #{$o-view-background-color};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,31 +19,26 @@ function checkLoginColumn(translation) {
|
|||
}, {
|
||||
content: `Login column should be ${translation}`,
|
||||
trigger: `[data-name="login"] span:contains("${translation}")`,
|
||||
isCheck: true,
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
registry.category("web_tour.tours").add('ir_model_fields_translation_en_tour', {
|
||||
test: true,
|
||||
url: '/web',
|
||||
url: '/odoo',
|
||||
steps: () => checkLoginColumn('Login')
|
||||
});
|
||||
|
||||
registry.category("web_tour.tours").add('ir_model_fields_translation_en_tour2', {
|
||||
test: true,
|
||||
url: '/web',
|
||||
url: '/odoo',
|
||||
steps: () => checkLoginColumn('Login2')
|
||||
});
|
||||
|
||||
registry.category("web_tour.tours").add('ir_model_fields_translation_fr_tour', {
|
||||
test: true,
|
||||
url: '/web',
|
||||
url: '/odoo',
|
||||
steps: () => checkLoginColumn('Identifiant')
|
||||
});
|
||||
|
||||
registry.category("web_tour.tours").add('ir_model_fields_translation_fr_tour2', {
|
||||
test: true,
|
||||
url: '/web',
|
||||
url: '/odoo',
|
||||
steps: () => checkLoginColumn('Identifiant2')
|
||||
});
|
||||
|
|
|
|||