Can someone help me in changing the color of onclick selected text in kendo angular grids.
相关问题
- Angular RxJS mergeMap types
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fs
- How to update placeholder text in ng2-smart-table?
- How to instantiate Http service in main.ts manuall
- Angular: ngc or tsc?
相关文章
- angular脚手架在ie9+下兼容问题
- angular 前端项目 build 报错 "Cannot find module 'le
- Angular Material Stepper causes mat-formfield to v
- After upgrade to Angular 9 cannot find variable in
- is there any difference between import { Observabl
- Suppress “Circular dependency detected” suppress w
- How can you get current positional information abo
- Angular material table not showing data
::selection
is the property you are looking for to change the selected text color (see this answer for more details).To get this to apply to your kendo grid, use the following CSS:
If you are still having trouble, make sure you are applying your CSS to the global scope. Because of style encapsulation, this is the easiest way to affect the styling of a third party component such as the Kendo grid.
Note: I chose this blue
#3399FF
with white#fff
text to change the highlight color back to the standard for internet explorer. See this answer for more details about the default colors for various broswers.