From 88f34a22e55541e21138827776f81cf7f1d9683d Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Tue, 18 Apr 2023 17:25:26 +0200 Subject: [PATCH] [IMP] web_theme_classic : Do not set border-bottom to required field, as the field has now a background-color --- .../static/src/scss/web_theme_classic.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/web_theme_classic/static/src/scss/web_theme_classic.scss b/web_theme_classic/static/src/scss/web_theme_classic.scss index 42358fe02..4bb6d21df 100644 --- a/web_theme_classic/static/src/scss/web_theme_classic.scss +++ b/web_theme_classic/static/src/scss/web_theme_classic.scss @@ -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; +}