Skip to content

Commit

Permalink
[IMP] web_remember_tree_column_width: adjust SCSS selector
Browse files Browse the repository at this point in the history
Previously, only columns with the class o_column_sortable had the custom
SCSS applied to them. As a result, columns like HTML were not sortable
and didn't benefit from the custom SCSS.

This commit made changes to the SCSS selector to include all table's
columns in the list view. However, the record selector (the first
checkbox column) and the column optional (the last column) that have the
class o_list_controller were excluded to avoid unexpected behavior.
  • Loading branch information
cuongnmtm committed May 9, 2024
1 parent 90dfe42 commit dd81906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_remember_tree_column_width/static/src/scss/main.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
th.o_column_sortable {
div.o_list_renderer > table.o_list_table th:not(.o_list_controller) {
max-width: none !important;
min-width: 0 !important;
}

0 comments on commit dd81906

Please sign in to comment.