3
0
Fork 0

[IMP] web_theme_classic : Do not set border-bottom to required field, as the field has now a background-color

17.0
Sylvain LE GAL 2023-04-18 17:25:26 +02:00
parent db6a2e438c
commit 88f34a22e5
1 changed files with 10 additions and 0 deletions

View File

@ -90,3 +90,13 @@ div.o_searchview_facet[role="img"] {
i.o_searchview_icon[role="img"] {
padding-right: 2px;
}
/***********************************************************
Tree View : Handle style for required fields
************************************************************/
.o_list_renderer
.o_data_row.o_selected_row
> .o_data_cell.o_required_modifier:not(.o_readonly_modifier) {
/* Disable border bottom as the field has now a background */
border-bottom: 0px solid;
}