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 pull request made changes to the SCSS selector to include all table columns in the list view. However, the record selector (the first checkbox column) and column optional (the last column) that have the class o_list_controller were excluded.
  • Loading branch information
cuongnmtm committed Jan 12, 2024
1 parent 90dfe42 commit cce3461
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 cce3461

Please sign in to comment.