Skip to content
Snippets Groups Projects
Commit a0c44f9d authored by Julien Mougenot's avatar Julien Mougenot Committed by fw-bot
Browse files

[FIX] account: removed horizontal scrollbar in lists


Before this commit, lists having a section or a note would have a horizontal
scrollbar in readonly mode.

Now it has been removed and the list stretches properly according to its parent
size.

Task 2086594

closes odoo/odoo#39301

X-original-commit: cbe26b3a
Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
parent e8d30072
No related branches found
No related tags found
No related merge requests found
......@@ -16,3 +16,14 @@ table.o_section_and_note_list_view tr.o_data_row.o_is_line_section {
border-top: 1px solid #BBB;
border-bottom: 1px solid #BBB;
}
table.o_section_and_note_list_view tr.o_data_row {
&.o_is_line_note,
&.o_is_line_section {
td {
// There is an undeterministic CSS behaviour in Chrome related to
// the combination of the row's and its children's borders.
border: none !important;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment