Linux Lite Forums
Wrong font color for youtube search bar in Firefox - Printable Version

+- Linux Lite Forums (https://www.freecinema2022.gq/forums)
+-- Forum: General (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=4)
+--- Forum: On Topic (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=14)
+--- Thread: Wrong font color for youtube search bar in Firefox (/showthread.php?tid=2967)



Wrong font color for youtube search bar in Firefox - UltraCookie - 06-03-2016

With the introduction of the Arc theme in LL3.0, manly the dark flavor, there comes a problem with the rather bright font color.
Some sites use the system font color even though it's not readable on white backgrounds.
This is an older problem but I figured that most LL users would search the forum first.

I found a solution here.

[Image: TpxU1sQ.png]

Download the Stylish add-on for Firefox and create a new style with the following code:

Code:
input:not(.urlbar-input):not(.textbox-input) {
        -moz-appearance: none !important;
        background-color: white;
        color: black;
    }

    #downloads-indicator-counter {
        color: white;
    }

    textarea {
        -moz-appearance: none !important;
        background-color: white;
        color: black;
    }

    select {
        -moz-appearance: none !important;
        background-color: white;
        color: black;
    }

The text in the searchbar should now be black.

[Image: uLV14hH.png]

I hope this helps.  Smile


Re: Wrong font color for youtube search bar in Firefox - Valtam - 06-04-2016

Nice share, thank you UltraCookie Smile