From c0e6766a2c1b1bd86440af2ed408a2b67de8262e Mon Sep 17 00:00:00 2001 From: bmFtZQ <62812711+bmFtZQ@users.noreply.github.com> Date: Fri, 24 Nov 2023 07:58:49 +0800 Subject: [PATCH] Fix tab separators tweak issue --- chrome/global/tweaks.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/chrome/global/tweaks.css b/chrome/global/tweaks.css index 71235ab..fe45b4f 100644 --- a/chrome/global/tweaks.css +++ b/chrome/global/tweaks.css @@ -17,12 +17,11 @@ bugs with certain themes eg. dark text on dark background.) */ /* remove tab separators */ @media (-moz-bool-pref: "uc.tweak.remove-tab-separators") { - .tabbrowser-tab:not([selected="true"], :hover, [beforeselected-visible], [beforehovered]) .tab-stack::after { - display: none !important; - } - - .tabbrowser-tab:not([last-visible-tab="true"]) { - margin-inline-end: 0px !important; + .tabbrowser-tab .tab-stack { + &::before, + &::after { + content: initial !important; + } } }