From 9d5626754fb9f4e4142d9c5128239d028f91b243 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Tue, 6 Jul 2021 12:38:38 +0900 Subject: [PATCH] Fix: Unselected Tab - container long click menu #114 --- userChrome.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index 80424d5..92b0c0e 100644 --- a/userChrome.css +++ b/userChrome.css @@ -433,14 +433,18 @@ /* Bar shape */ width: 1px; height: 20px; - overflow: hidden; /* Bar Color */ opacity: var(--tab-separator-opacity); transition: opacity .2s var(--ease-basic); background-color: color-mix(in srgb, currentColor 20%, transparent); /* Replace var(--toolbarseparator-color) - Hard coded for compatibility */ } + #tabs-newtab-button:is(:hover, [open])::before { + content: ""; + position: absolute; + } + .tabbrowser-tab:is([visuallyselected], [multiselected], :hover) + .tabbrowser-tab .tab-background::before, .tabbrowser-tab:is([visuallyselected], [multiselected], :hover) ~ .tabbrowser-tab[afterhovered] .tab-background::before, .tabbrowser-tab[last-visible-tab]:is([visuallyselected], [multiselected], :hover) ~ #tabs-newtab-button::before, .tabbrowser-tab[first-visible-unpinned-tab]:is([visuallyselected], [multiselected], :hover) .tab-background::before,