Hi all, can’t seem to find a way to change the color of the title of an inline list, can’t find a named class for this. Is there a way? Tks
Not sure what type of list layout are you using, I’m taking a “list style” version.
<pre><span><style>
[data-test="list-item"] .textStyle {
color: blue;
}
</style></span></pre>
Thanks, but I mean the title. In your example it would be the black “Test Users” label
<pre><span><style>
div[data-test="app-vertical-list"] > * > div{
color: blue;
}
This might work, but I’m not confident it won’t affect anything in the inline list.
Try using this.
[data-index=“0”] >.inner >[role=“row”] >[role=“cell”] >div >div {
background-color: crimson !important;
color: white;
padding: 10px;
border-radius: 8px;
animation: fade-in 0.9s;
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
Thank you!
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.