FilteringTable
FilteringTable copied to clipboard
Convert styles from css to scss
i extend from valo theme, but filter table look bad, how i fix it?
@import "../valo/valo";
@mixin myTheme { @include valo;
// my css rules }
I have the same issue: I have also a custom scss theme on top of valo and my filtering tables are broken like in the screen above.
@tepi Could you please convert the filtertable.css to the scss format?
Hello everbody,
Any news on this thread please ?, I am facing the same issue while trying to format the filter panel elements through a CSS style sheet. I am using a CustomFilterComponent on my table (ComboBox filter):
So at this point I copied the CSS properties from the code here: https://github.com/tepi/FilteringTable/blob/master/filteringtable-addon/src/main/resources/org/tepi/filtertable/public/filteringtable/styles.css
Then copied and pasted them into my personalized theme style CSS file (adding the parent's theme) i.e.:
...
.ModernTheme .v-app .v-table .filters-panel input.v-textfield.v-widget,
.v-window .v-table .filters-panel input.v-textfield.v-widget {
height: 37px;
min-height: 37px !important;
display: inline-block;
border-radius: 0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-o-border-radius: 0px;
}
...
After creating the FilterTable columns I can see the filter panel like this:
But I am still having the issue on the ones to filter String columns. So any help or suggestion will be very appreciated.
Thanks again, Alan