Created
February 2, 2018 21:18
-
-
Save nelsnelson/281c08667cef2ce86a95aae77e1b8713 to your computer and use it in GitHub Desktop.
Bookmarks displayed on toolbars appear as favicons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* When bookmarks are displayed on a toolbar, they appear as favicons. (Text is hidden) | |
* | |
* Screenshot: https://s26.postimg.org/lnb9akmbd/Faviconized-bookmarks.png | |
* | |
* Tested on Firefox 55, Windows 7 | |
* Contributor(s): Okamoi | |
*/ | |
/* Hides bookmark text for all bookmarks displayed in a toolbar */ | |
.bookmark-item > .toolbarbutton-text { | |
display: none !important; | |
} | |
/* Small visual tweak so it looks exactly the same as if the bookmark really had no text */ | |
.bookmark-item > .toolbarbutton-icon { | |
margin-inline-end: 0px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment