[BUG] uBlock Origin "My filters" notice and related questions in support.mozilla.org are hard to read
Elaborendum opened this issue · 2 comments
Describe the bug
In UBO's settings, if you try to leave to, for example, "My rules", after you make an edit in the "My filters" without saving it, you will get a notice about it. The background of this notice is a very light shade of yellow, which makes the text on it very hard to read.
On the other hand, when you go to a question on support.mozilla.org, there's a sidebar that directs you to similar questions. In this case, the text is a rather dark shade of grey, which makes it uncomfortable to read against the dark background.
To Reproduce
UBO:
- Open UBO's settings
- Go to the "My filters" pane and make any edit
- Try to leave to another pane, like "My rules"
- See notice
SUMO:
- Go to a question, for example https://support.mozilla.org/en-US/questions/977330
- Scroll down and see the related questions in the "See also" section in the right sidebar
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
- OS: Win10
- Version Firefox 91.0.1
The Ublock issue should be fixed with the lastest commits.
As for the mozilla support page, it should show as blue by default:
It uses the value of the common variable --in-content-link-color
, so if you changed it, it will get changed everywhere, including mozilla support pages.
If you don't want to use the link color everywhere and just want that sidebar text color changed, add this to the bottom of the mozilla support page section in userContent.css
:
/* Normal color for links on sidebar */
#related-content > *[class^="related"] a {
color: #09f !important}
/* Hover color for links on sidebar */
#related-content > *[class^="related"] a:hover {
color: #0cf !important}
/* Active or on-click color for links on sidebar */
#related-content > *[class^="related"] a:active {
color: #0070aa !important}
/* Visited color for links on sidebar */
#related-content > *[class^="related"] a:visited {
color: #007acc !important}
^ Change the colors to any you like.
Thank you, it's now working properly.