Created
October 11, 2024 20:43
-
-
Save gdavid04/a05ec90726499462848abbd85fdbf17a to your computer and use it in GitHub Desktop.
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"); | |
/* Actually compact compact mode */ | |
#tabbrowser-tabs { | |
height: 40px !important; | |
/* Fix height when dragging tabs */ | |
&[movingtab] { | |
padding-bottom: revert; | |
margin-bottom: revert; | |
} | |
} | |
/* Tab indices */ | |
#tabbrowser-tabs { | |
counter-reset: tab-index; | |
} | |
.tabbrowser-tab:nth-child(-n + 8) .tab-content::before, | |
.tabbrowser-tab:nth-child(n + 9):last-of-type .tab-content::before { | |
counter-increment: tab-index; | |
content: counter(tab-index); | |
color: #555; | |
font-size: 80%; | |
background: #dddd; | |
border-radius: 2px; | |
position: absolute; | |
top: 8px; | |
left: 5px; | |
line-height: 1; | |
z-index: 1; | |
pointer-events: none; | |
} | |
/* Always show close button on hover */ | |
.tabbrowser-tab:hover .tab-close-button { | |
display: revert !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment