5 Answers, 1 is accepted
0
Hi Reid,
Each toolbar button of the Grid has an unique CSS class (k-grid-[toolName]), so you can style the buttons directly through these classes like in the following Dojo: https://dojo.telerik.com/IbUVUKah
Namely:
Regards,
Vessy
Progress Telerik
Each toolbar button of the Grid has an unique CSS class (k-grid-[toolName]), so you can style the buttons directly through these classes like in the following Dojo: https://dojo.telerik.com/IbUVUKah
Namely:
.k-grid .k-grid-excel{
color
:
#fff
;
background-color
:
#00f
;
}
.k-grid .k-grid-pdf{
color
:
#fff
;
background-color
:
#f00
;
}
Regards,
Vessy
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0

Reid
Top achievements
Rank 2
answered on 13 Aug 2018, 02:23 PM
Hi,
I added those styles and set a desired color but it has no effect.
1
Accepted
Hi Reid,
Did you try making the CSS selectors heavier or adding an "!important" statement to the applied styles (note, that the selectors for the Less and Sass themes are different). What is the Theme that you are using? Meanwhile, you can try to style the buttons with the following selectors:
Regards,
Vessy
Progress Telerik
Did you try making the CSS selectors heavier or adding an "!important" statement to the applied styles (note, that the selectors for the Less and Sass themes are different). What is the Theme that you are using? Meanwhile, you can try to style the buttons with the following selectors:
.k-grid .k-button.k-grid-excel {
color
:
#fff
;
background-color
:
#00f
;
background-image
:
none
;
}
.k-grid .k-button.k-grid-pdf {
color
:
#fff
;
background-color
:
#f00
;
background-image
:
none
;
}
Regards,
Vessy
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0

Reid
Top achievements
Rank 2
answered on 14 Aug 2018, 07:15 PM
Thank you for that reply. That works!
0
Hi,
You are welcome, Reid - I am glad my suggestion was helpful for you. Let us know whenever you need further assistance with our widgets.
Regards,
Vessy
Progress Telerik
You are welcome, Reid - I am glad my suggestion was helpful for you. Let us know whenever you need further assistance with our widgets.
Regards,
Vessy
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.