Last active
January 21, 2020 14:39
-
-
Save h4tr3d/f8eef39e7744d55146b4c259717b56a9 to your computer and use it in GitHub Desktop.
My interface customizations for Firefox to live without Classic Theme Restorer
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
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
.tabbrowser-tab:not([pinned]):not([selected]) { | |
min-width: initial !important; | |
overflow: hidden; | |
} | |
.tabbrowser-tab:not([pinned]) { | |
min-width: initial !important; | |
} | |
.tabbrowser-tab { | |
border-right: 1px solid #aaa !important; | |
} | |
/* dividers between tabs */ | |
.tabbrowser-tab::after, | |
.tabbrowser-tab::before { | |
display: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment