V88
October 10, 2021, 9:41am
1
Does anybody have a quick bit a CSS that is “robust” and will change the colour of the header text in a grouped, condensed inline list?
V88
October 11, 2021, 10:23am
2
@ThinhDinh have you ever done this?
Sorry I didn’t have time to properly test this. I’m using what I believe is a pretty high-up selector in role=cell so it can affect some other components on your screen. Please let me know if this is the case.
<pre><span><style>
div[role="cell"] >div >div {
color: #8b0000;
}
V88
October 11, 2021, 1:34pm
4
Ok. I’ll have a play . Many thanks sir.
V88
October 11, 2021, 1:54pm
5
It seems to work fine @ThinhDinh so thanks very much. Is there a similar technique to target just the title of an inline list? Cheers
Please try this.
<pre><span><style>
[data-test="app-vertical-list"] >div >div {
color: #8b0000;
}