Last active
July 26, 2021 13:51
-
-
Save angrykoala/b2b9e1f6021935cd0e9931a239cf824b to your computer and use it in GitHub Desktop.
My Firefox customization
This file contains 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
/* | |
Add this file under ~/.mozilla/firefox/***.default/chrome/ in linux | |
Or AppData/Roaming/Mozilla/Firefox/Profiles/***.default/chrome in windows | |
about:config --> toolkit.legacyUserProfileCustomizations.stylesheets | |
*/ | |
/* Removes "Open All In Tabs" button in bookmarks tabs */ | |
openintabs-menuseparator, .openintabs-menuitem, .bookmarks-actions-menuseparator { | |
display: none !important; | |
} | |
/* Bookmark tabs padding */ | |
toolbarbutton.bookmark-item { | |
padding: 6px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment