Linux Lite Forums

Full Version: Wrong font color for youtube search bar in Firefox
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
Nice share, thank you UltraCookie Smile