Use the below CSS to customize the Grid Filterbar cell element present in the Grid header.
.e-grid .e-filterbarcell {
background-color: #deecf9;
}
Customize the Grid Filterbar input element using this CSS.
.e-grid .e-filterbarcell .e-input-group input.e-input{
font-family: cursive;
}
Use the below CSS to customize the Grid Filterbar highlight color of focused filterbar input element.
.e-grid .e-filterbarcell .e-input-group.e-input-focus::after,
.e-grid .e-filterbarcell .e-input-group.e-input-focus::before{
background-color: #0078d7;
}
Use the below CSS to customize the Grid Filterbar input clear icon.
.e-grid .e-filterbarcell .e-input-group .e-clear-icon::before {
content: '\e825';
}
Below CSS customizes the Grid filter icon which present in the Grid header. You can also use custom icons. Here we have used bootstrap icon for filter icon element.
.e-grid .e-icon-filter::before{
content: '\002a';
}
Use the below CSS to customize the Grid filter dialog content element.
.e-grid .e-filter-popup .e-dlg-content {
background-color: #deecf9;
}
Grid filter dialog footer element an be customized by using the below CSS.
.e-grid .e-filter-popup .e-footer-content {
background-color: #deecf9;
}
Use the below CSS to customize the Grid filter dialog input element.
.e-grid .e-filter-popup .e-input-group input.e-input{
font-family: cursive;
}
Use the below CSS to customize the Grid filter dialog button element.
.e-grid .e-filter-popup .e-btn{
font-family: cursive;
}
Grid Excel filter dialog number filters element can be customized using the below CSS.
.e-grid .e-filter-popup .e-contextmenu-wrapper ul{
background-color: #deecf9;
}