Skip to content

Instantly share code, notes, and snippets.

@soulhotel
Last active October 17, 2025 16:46
Show Gist options
  • Select an option

  • Save soulhotel/83499dfc1c91830b97ab3724961594ed to your computer and use it in GitHub Desktop.

Select an option

Save soulhotel/83499dfc1c91830b97ab3724961594ed to your computer and use it in GitHub Desktop.
opera style tabs for firefox split view (firefox css)
/* 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;
}
}
}
}
@soulhotel
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment