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.
선택된 해결법
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;
}
문맥에 따라 이 답변을 읽어주세요
👍 0
모든 댓글 (2)
선택된 해결법
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”.