We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

The best way to change #e3165b color for all inputs, and grid also

Hi Everyone!
I'm using Material theme and 'm fine with it.
The only thing is to make #e3165b color to be blue for all inputs, and grid also, etc.
Is there a simple way to do that?




1 Reply

SD Saranya Dhayalan Syncfusion Team November 28, 2019 12:31 PM UTC

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 


Loader.
Up arrow icon