Created
September 30, 2024 02:10
-
-
Save arturo182/a3fcd83a6a65f4b1e662beb809a03ca0 to your computer and use it in GitHub Desktop.
Firefox
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
/* Make tabs look like tabs */ | |
.tab-background { | |
border-radius: 0px 0px !important; | |
margin-bottom: 0px !important; | |
} | |
.tabbrowser-tab:not([selected=true]):not([multiselected=true]) .tab-background { | |
background-color: color-mix(in srgb, currentColor 2%, transparent); | |
} | |
menupopup>menu, menupopup>menuitem { | |
padding-block: 2px !important; | |
} | |
:root { | |
--arrowpanel-menuitem-padding: 2px !important; | |
} | |
/* Disable fade out on inactive window */ | |
:root[tabsintitlebar] #titlebar:-moz-window-inactive { | |
opacity: 1 !important; | |
} | |
/* Disable blue dot on pinned tab */ | |
.tabbrowser-tab > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]){ | |
background-image: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment