Advertisement
rccharles

Firefox ditch bookmark icon clutter

Nov 30th, 2016
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.05 KB | None | 0 0
  1. /* adjust Firefox chrome.  
  2.  
  3.    How to see Firefox chrome:
  4.      chrome://browser/content/browser.xul  
  5.  
  6.    example tweaks:
  7.      https://www.eriwen.com/firefox/use-the-dom-inspector/
  8.  
  9.    The customization files userChrome.css (user interface) and userContent.css (websites)  
  10.    are located in the chrome folder in the Firefox profile folder.
  11.      http://kb.mozillazine.org/Editing_configuration  
  12.  
  13.    Interestingly, works using Stylist.
  14.  
  15.  
  16.    See:  
  17.      https://support.mozilla.org/en-US/questions/1120624  
  18.  
  19.    This works with the bookmark icon.  
  20.    Doesn't effect the [Bookmark] pulldown :-(   */  
  21.  
  22.  
  23. /* How to hide "Recently Bookmarked"  
  24.    This effects booth the Bookmark icon and pulldown.  
  25.    A menu item switches a hidden preference from true to false, and you can do that directly as follows:
  26.     (A) In a new tab, type or paste about:config in the address bar and press Enter/Return.  
  27.         Click the button promising to be careful.
  28.     (B) In the search box above the list, type or paste book and pause while the list is filtered
  29.     (C) Double-click the browser.bookmarks.showRecentlyBookmarked preference to switch the value  
  30.         from true to false  
  31.    https://support.mozilla.org/en-US/questions/1141266 */  
  32.  
  33. /* -------------------- "Bookmark" icon ------------------------- */  
  34. /* Ditch [Other Bookmarks] */  
  35. #menu_unsortedBookmarks,  
  36. #BMB_unsortedBookmarks {display:none!important}  
  37.  
  38. /* Ditch [Bookmarks toolbar]
  39.    easer to find when looking for BMB_BookmarksShowAllTop */  
  40. menu#BMB_bookmarksToolbar {  
  41.   color:orange !important;  
  42.   display:none !important;/**/  
  43.   }/**/  
  44.  
  45. #BMB_viewBookmarksSidebar {color:green !important;}  
  46.  
  47. #BMB_recentBookmarks { color:red !important;}  
  48.  
  49. /*  The separator above the [Bookmarks toolbar]  
  50.     The magic separator that is the one. It was rather, rather hard to find. */  
  51. 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