
CSS for changing the color of the star in a highlighted row
I would like to change the fill color and the outline color of stars in the message list when messages are starred and highlighted. (I have code already for stars when messages are starred and not highlighted.)
Does anyone know the right CSS code?
Many thanks for any help.
Chosen solution
Based on this topic:
https://support.mozilla.org/gl/questions/1500833
the star colour for selected messages can be set with this css:
*|*:root .selected{ --thread-pane-flag-fill: cyan !important; --thread-pane-flag-stroke: red !important; }Read this answer in context 👍 0
All Replies (2)
Chosen Solution
Based on this topic:
https://support.mozilla.org/gl/questions/1500833
the star colour for selected messages can be set with this css:
*|*:root .selected{ --thread-pane-flag-fill: cyan !important; --thread-pane-flag-stroke: red !important; }
Thanks, sfhowes! I did not know how to refer to “selected”.