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, the custom SCSS of this module was only applied to columns that had the class o_column_sortable. This meant that columns such as HTML were not sortable and did not benefit from the custom SCSS.

This pull request has made changes to the SCSS selector to ensure that all table columns in the list view are selected. However, it excludes the record selector (the first checkbox column) and column optional (the last column) which have the class o_list_controller.
  • Loading branch information
cuongnmtm committed Jan 12, 2024
1 parent 90dfe42 commit 6f25175
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 6f25175

Please sign in to comment.