Entfernen Sie das Symbol aus dem Lesezeichen in der Firefox-Symbolleiste in userChrome.css

1280
kalaracey

Ich versuche, das Symbol eines bestimmten Lesezeichens in der Lesezeichen-Symbolleiste von Firefox (20.0) zu entfernen. Das heißt, das gepunktete Kästchen links neben "Später lesen" in der folgenden Abbildung:

enter image description here

Ich habe meine userChrome.cssDatei wie folgt:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /*only needed once*/ .bookmark-item[label="Read Later"] 

Folgendes funktioniert auch nicht:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /*only needed once*/ #personal-bookmarks toolbarbutton[label="Read Later"] image{ display: none !important; -moz-margin-end: 0px !important; } 

Leider tut das nichts. Irgendwelche Ideen?


Links, die ich verwendet habe:

#bookmarksBarContent toolbarbutton-Änderungen in userChrome.css

Wie entferne ich Symbole aus der FF 4 Bookmarks Toolbar?

1

1 Antwort auf die Frage

0
iglvzx

You need to target the bookmark's icon. Try the following:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); .bookmark-item .toolbarbutton-icon[label="Read Later"] { display: none !important; } 

Alternatively, you can target all blank bookmark icons (that are not in folders) with the following:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); .bookmark-item .toolbarbutton-icon:not([type="menu"]):not([src]) { display: none !important; }