Inline List Group Header Colour

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?

@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;
}

2 Likes

Ok. I’ll have a play . Many thanks sir.

1 Like

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 :+1:

1 Like

Please try this.

<pre><span><style>

[data-test="app-vertical-list"] >div >div {
color: #8b0000;
}
4 Likes