mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-10 03:40:14 +00:00
11 lines
602 B
CSS
11 lines
602 B
CSS
|
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tab_separator_lines.css made available under Mozilla Public License v. 2.0
|
||
|
See the above repository for updates as well as full license text. */
|
||
|
|
||
|
/* Bring back tab separator lines that were removed in Proton */
|
||
|
|
||
|
.tabbrowser-tab{
|
||
|
border-inline-start: 1px solid !important;
|
||
|
border-image: 0 1 linear-gradient(transparent 20%,var(--toolbarseparator-color) 20%,var(--toolbarseparator-color) 80%,transparent 80%);
|
||
|
}
|
||
|
.tabbrowser-tab[first-visible-tab],
|
||
|
.tabbrowser-tab[first-visible-unpinned-tab]{ border: none !important; }
|