Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* adjust Firefox chrome.
- How to see Firefox chrome:
- chrome://browser/content/browser.xul
- example tweaks:
- https://www.eriwen.com/firefox/use-the-dom-inspector/
- The customization files userChrome.css (user interface) and userContent.css (websites)
- are located in the chrome folder in the Firefox profile folder.
- http://kb.mozillazine.org/Editing_configuration
- Interestingly, works using Stylist.
- See:
- https://support.mozilla.org/en-US/questions/1120624
- This works with the bookmark icon.
- Doesn't effect the [Bookmark] pulldown :-( */
- /* How to hide "Recently Bookmarked"
- This effects booth the Bookmark icon and pulldown.
- A menu item switches a hidden preference from true to false, and you can do that directly as follows:
- (A) In a new tab, type or paste about:config in the address bar and press Enter/Return.
- Click the button promising to be careful.
- (B) In the search box above the list, type or paste book and pause while the list is filtered
- (C) Double-click the browser.bookmarks.showRecentlyBookmarked preference to switch the value
- from true to false
- https://support.mozilla.org/en-US/questions/1141266 */
- /* -------------------- "Bookmark" icon ------------------------- */
- /* Ditch [Other Bookmarks] */
- #menu_unsortedBookmarks,
- #BMB_unsortedBookmarks {display:none!important}
- /* Ditch [Bookmarks toolbar]
- easer to find when looking for BMB_BookmarksShowAllTop */
- menu#BMB_bookmarksToolbar {
- color:orange !important;
- display:none !important;/**/
- }/**/
- #BMB_viewBookmarksSidebar {color:green !important;}
- #BMB_recentBookmarks { color:red !important;}
- /* The separator above the [Bookmarks toolbar]
- The magic separator that is the one. It was rather, rather hard to find. */
- menupopup#BMB_bookmarksPopup.cui-widget-panel.cui-widget-panelview.cui-widget-panelWithFooter.PanelUI-subView menuseparator:nth-child(10) {display:none!important; }/**/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement