Last active
January 14, 2022 18:13
-
-
Save lassekongo83/0f9e0e9ada4966281125336a6e8abb9f to your computer and use it in GitHub Desktop.
My Firefox Proton userChrome. Slightly more compact and with tabs that look like tabs.
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
:root { | |
/* Adjust the tab height to your liking */ | |
--tab-min-height: 30px !important; | |
--arrowpanel-menuitem-padding: 4px 8px !important; | |
} | |
#tabbrowser-tabs { | |
--user-tab-rounding: 2px; | |
} | |
.tab-background { | |
border-radius: var(--user-tab-rounding) var(--user-tab-rounding) 0px 0px !important; | |
margin-block: 1px 0 !important; | |
} | |
menupopup > menuitem, menupopup > menu { | |
padding-block: 4px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment