userChrome.css PROBLEM!

  • Hi

    Habe das hier in meine userChrome.css reinkopiert:

    .toolbarbutton-text {
    -moz-appearance: none !important;
    color: white !important;
    }

    Damit die Farbe meiner Lesezeichensymbole weiß ist!

    ABER: Es funzt nicht so recht wie ich es mir vorgstellt habe!

    Hier mal meine userChrome.css



    Kann mir jemand sagen wo der Fehler ist? Hab den Mozilla Firefox 1.0.7!

    I'm gonna' break that birdies neck

  • Wenn man keine anderen Stylesheets eingebunden hat, dann sollte das ganz nach oben. Den Kommentar (die sollte man vorher auch mal lesen ;)) habe ich mitkopiert:

    Code
    * Do not remove the @namespace line -- it's required for correct functioning
     */
    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  • Bei dir müsste die UserChrome so aussehen:

    CSS
    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    .toolbarbutton-text {
    -moz-appearance: none !important;
    color: white !important;
    }
  • Zitat von Dr. Ä

    Bei dir müsste die UserChrome so aussehen:

    CSS
    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    .toolbarbutton-text {
    -moz-appearance: none !important;
    color: white !important;
    }

    Danke dir, hat wunderbar geklappt!

    I'm gonna' break that birdies neck