Last active
October 17, 2025 16:46
-
-
Save soulhotel/83499dfc1c91830b97ab3724961594ed to your computer and use it in GitHub Desktop.
opera style tabs for firefox split view (firefox css)
This file contains hidden or 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
| /* opera style split tabs */ | |
| .tab-split-view-container { | |
| /* remove default split view background */ | |
| background: transparent !important; | |
| .tabbrowser-tab { | |
| & .tab-background { | |
| /* both tabs need to have a matching background */ | |
| background:var(--tab-selected-bgcolor) !important; | |
| box-shadow: none !important; /* shadow clashes with opera style */ | |
| } | |
| & .tab-label[selected] { | |
| color:AccentColor; | |
| } | |
| &:first-child { | |
| /* this produces the bridge between tabs */ | |
| &::after { | |
| content:""; | |
| background:var(--tab-selected-bgcolor); /* matching background */ | |
| min-width:10px; /* seperation length */ | |
| height:40%; /* how thick */ | |
| margin: auto; /* easy centering */ | |
| border-radius: 2px; | |
| } | |
| } | |
| } | |
| } |
Author
soulhotel
commented
Oct 17, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment