英文:
How to change the color of rows and text in aggrid on selection
问题
我尝试使用这个,但文本中的链接颜色不会变成白色。
英文:
I have a Aggrid and have to change the color of row and text from default blue and black to green and white when we select a row in Aggrid.
I tried making use of this, but the color of links in text does not change to white
答案1
得分: 0
.ag-row-selected A {
color: while;
}
英文:
It is not related to ag-grid. All you need is to add different CSS rule for links inside a selected row, to override link color (and also, probably, :hover
, :active
, :focus
states).
.ag-row-selected A {
color: while;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论