Hi Dan,
Thank you for contacting Syncfusion support,
We have checked your query, we would like to suggest that you use theme studio to customize all our inputs. By changing the accent color to blue in the below link
Please refer the below material CSS file (changed the accent color into blue for input component)
In EjsGrid, input elements will be rendered for various features like filtering, editing, Searching, etc. You can change the color of the input box inside the Grid by applying the below CSS styles. Refer the below code example
<style>
/*searchbox*/
.e-grid .e-toolbar .e-toolbar-right .e-input-group.e-search::after,
.e-grid .e-toolbar .e-toolbar-right .e-input-group.e-search::before,/*filterbar*/
.e-grid .e-headercontent .e-filterbar .e-filterdiv span.e-input-group::after,
.e-grid .e-headercontent .e-filterbar .e-filterdiv span.e-input-group::before,/*normaledit*/
.e-grid .e-content .e-row form.e-gridform .e-rowcell span.e-input-group::after,
.e-grid .e-content .e-row form.e-gridform .e-rowcell span.e-input-group::before{
background: darkblue;
}
</style> |
Above we have customized the input box color for search, Edit and filter inputs. If you want to customize the Grid theme, we also suggest you use Theme Studio to customize existing theme and apply your custom theme. You can download the customized theme as a CSS file that you have applied for the Grid. Now you can use these files to render your customized grid.
Please find the theme studio from link below,
Please get back to us if you need further assistance
Regards,
Saranya D