From 6667329517bbbbd0c29885fc2487f7bbc8711341 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Sat, 19 Mar 2022 08:21:20 +0900 Subject: [PATCH 1/2] Fix: Video - Prevent flashing at hidden --- userContent.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/userContent.css b/userContent.css index bde71e3..10ffaa3 100644 --- a/userContent.css +++ b/userContent.css @@ -95,10 +95,12 @@ video { /* Control Bar */ #controlsContainer .controlBar { transition: transform 350ms ease; + opacity: 1 !important; } #controlsContainer .controlBar[hidden] { transform: translateY(100%); transition: transform 350ms ease-in-out, opacity 1s ease 100ms !important; + opacity: 0 !important; } #controlsContainer .controlBar[hidden] .progressBar, #controlsContainer .controlBar[hidden] .bufferBar { From 5272782fbf60759cf9d8bc0d840f69f5efebe2ec Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Sun, 20 Mar 2022 04:33:56 +0900 Subject: [PATCH 2/2] Fix: Clipped Tab - too narrow --- userChrome.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/userChrome.css b/userChrome.css index 40abeba..e0b20bc 100644 --- a/userChrome.css +++ b/userChrome.css @@ -3548,11 +3548,11 @@ tab[visuallyselected] > stack::after { } /** Clipped tabs - Letters cleary *********************************************/ -:root { - --inline-tab-padding: 6px !important; /* Original: 8px */ +#tabbrowser-tabs[closebuttons="activetab"] { + --inline-tab-padding: 7px !important; /* Original: 8px */ } -:root[uidensity="touch"] { - --inline-tab-padding: 8px !important; /* Original: 8px */ +#tabbrowser-tabs[overflow="true"] { + --inline-tab-padding: 6px !important; /* Original: 8px */ } .tab-content[pinned] {