Fix tab separators tweak issue

This commit is contained in:
bmFtZQ 2023-11-24 07:58:49 +08:00
parent 6c1efa741d
commit c0e6766a2c

View file

@ -17,12 +17,11 @@ bugs with certain themes eg. dark text on dark background.) */
/* remove tab separators */ /* remove tab separators */
@media (-moz-bool-pref: "uc.tweak.remove-tab-separators") { @media (-moz-bool-pref: "uc.tweak.remove-tab-separators") {
.tabbrowser-tab:not([selected="true"], :hover, [beforeselected-visible], [beforehovered]) .tab-stack::after { .tabbrowser-tab .tab-stack {
display: none !important; &::before,
} &::after {
content: initial !important;
.tabbrowser-tab:not([last-visible-tab="true"]) { }
margin-inline-end: 0px !important;
} }
} }