2021-04-21 07:03:09 +00:00
|
|
|
/* 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{
|
2021-04-22 10:00:49 +00:00
|
|
|
border-inline-end: 1px solid transparent !important;
|
2021-07-15 10:55:03 +00:00
|
|
|
border-image: 0 1 linear-gradient(
|
|
|
|
transparent 20%,
|
|
|
|
color-mix(in srgb, currentColor 20%, transparent) 20%,
|
|
|
|
color-mix(in srgb, currentColor 20%, transparent) 80%,
|
|
|
|
transparent 80%
|
2022-12-23 06:43:48 +00:00
|
|
|
) !important;
|
2021-04-21 07:03:09 +00:00
|
|
|
}
|
2021-07-15 10:55:03 +00:00
|
|
|
|
2021-04-22 10:47:55 +00:00
|
|
|
.tabbrowser-tab:hover,
|
2023-01-05 12:33:54 +00:00
|
|
|
#tabbrowser-tabs:not([movingtab]) .tabbrowser-tab[beforehovered],
|
2021-04-22 10:00:49 +00:00
|
|
|
.tabbrowser-tab[selected],
|
2023-01-05 08:44:05 +00:00
|
|
|
.tabbrowser-tab[multiselected],
|
2023-01-05 12:33:54 +00:00
|
|
|
#tabbrowser-tabs:not([movingtab]) .tabbrowser-tab[before-multiselected],
|
|
|
|
#tabbrowser-tabs:not([movingtab]) .tabbrowser-tab[beforeselected-visible] { border-image: none !important; }
|