From 9c8b53fdc27f5a20edcfc9248670adce222ba1f0 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Fri, 16 Jul 2021 10:18:16 +0900 Subject: [PATCH 1/4] Clean: Indent --- userChrome.css | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/userChrome.css b/userChrome.css index c75288d..daa4c12 100644 --- a/userChrome.css +++ b/userChrome.css @@ -7,15 +7,15 @@ /* Theme - Compatibility ****************************************************/ /* Header Image */ :root[lwtheme-image] { - background-image: var(--lwt-header-image) !important; /* Original: var(--lwt-header-image) */ - background-repeat: no-repeat !important; - background-position: right top !important; + background-image: var(--lwt-header-image) !important; /* Original: var(--lwt-header-image) */ + background-repeat: no-repeat !important; + background-position: right top !important; } :root[lwtheme-image] #navigator-toolbox:-moz-lwtheme { - background-image: var(--lwt-additional-images) !important; /* Original: var(--lwt-header-image), var(--lwt-additional-images); */ - background-repeat: var(--lwt-background-tiling) !important; - background-position: var(--lwt-background-alignment) !important; - background-color: unset !important; /* Original: var(--lwt-accent-color) */ + background-image: var(--lwt-additional-images) !important; /* Original: var(--lwt-header-image), var(--lwt-additional-images); */ + background-repeat: var(--lwt-background-tiling) !important; + background-position: var(--lwt-background-alignment) !important; + background-color: unset !important; /* Original: var(--lwt-accent-color) */ } /* Navbar Border */ @@ -230,7 +230,7 @@ /*= BookMark Bar - Reduce Height ===========================================*/ :root[uidensity=compact] #PersonalToolbar toolbarbutton { - margin-top: 0px; /* Original: 2px */ + margin-top: 0px; /* Original: 2px */ } /*= Menu - Reduce Padding ==================================================*/ @@ -681,7 +681,6 @@ :root[uidensity=compact] .tabbrowser-tab:is([image], [pinned])[usercontextid] > .tab-stack > .tab-content[attention]:not([selected="true"]), :root[uidensity=compact] .tabbrowser-tab[usercontextid] > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]) { /* Original: radial-gradient(circle, var(--attention-icon-color), var(--attention-icon-color) 2px, transparent 2px); */ - var(--dotted-identity-image) !important; background-position-x: 30%, 50%, 70% !important; } @@ -692,7 +691,6 @@ } :root[uidensity=compact] .tabbrowser-tab:is([image], [pinned])[usercontextid]:is([soundplaying], [muted], [activemedia-blocked]) > .tab-stack > .tab-content[attention]:not([selected="true"]), :root[uidensity=compact] .tabbrowser-tab[usercontextid]:is([soundplaying], [muted], [activemedia-blocked]) > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]) { - var(--dotted-identity-image) !important; background-position-x: calc(30% - 1px), calc(50% - 1px), calc(70% - 1px) !important; } @@ -1115,7 +1113,7 @@ /* Checkbox */ :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem[type="checkbox"][checked="false"] > .menu-iconic-left { - padding-inline-start: var(--context-menu-text-padding); + padding-inline-start: var(--context-menu-text-padding); } } From 023d8a1eec13b818061d8954d87deac9ea33bc4c Mon Sep 17 00:00:00 2001 From: MS_Y Date: Sun, 18 Jul 2021 07:43:58 +0000 Subject: [PATCH 2/4] Fix: Force proton enabled #127 --- user.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/user.js b/user.js index 5f2e5ca..a6b2f94 100644 --- a/user.js +++ b/user.js @@ -2,6 +2,9 @@ // userchrome.css usercontent.css activate user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); +// Proton Enabled #127 +user_pref("browser.proton.enabled", true); + // Fill SVG Color user_pref("svg.context-properties.content.enabled", true); From 03d19bafa39f927f05e3c668b94215b97afeaa21 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Mon, 19 Jul 2021 13:39:32 +0900 Subject: [PATCH 3/4] Fix: Container Tab - Restore none exist favicon --- userChrome.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/userChrome.css b/userChrome.css index daa4c12..2753d2b 100644 --- a/userChrome.css +++ b/userChrome.css @@ -650,6 +650,24 @@ border-bottom: 2px solid var(--identity-icon-color); } + /* None exist favicon */ + .tabbrowser-tab:not([image]):not([pinned], [sharing], [crashed]):not([soundplaying], [muted], [activemedia-blocked]) .tab-content::before, + .tabbrowser-tab[pinned][visuallyselected]:not([busy]):not(:hover) .tab-content::before { + /* Box Model */ + content: ''; + display: block; + position: absolute !important; + transition: 0.2s !important; + transform: translateY(10px) !important; + + /* Shape */ + border-bottom: 2px solid var(--identity-icon-color); + width: 16px; + } + .tabbrowser-tab:not([image]):not([pinned], [sharing], [crashed]):not([soundplaying], [muted], [activemedia-blocked]) .tab-content::before { + transform: translateY(10px) !important; /* None exist favicon */ + } + /* None exist favicon - With Sound */ .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing], [crashed]):is([soundplaying], [muted], [activemedia-blocked]) { box-sizing: content-box; From 3c0ab476cdbefc76fc0a49584ea2c27b5dd3af1e Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Mon, 19 Jul 2021 13:40:15 +0900 Subject: [PATCH 4/4] Fix: Container Tab - Show indicator at busy #126 --- userChrome.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index 2753d2b..4286196 100644 --- a/userChrome.css +++ b/userChrome.css @@ -650,7 +650,8 @@ border-bottom: 2px solid var(--identity-icon-color); } - /* None exist favicon */ + /* Busy, None exist favicon */ + .tabbrowser-tab[busy] .tab-content::before, .tabbrowser-tab:not([image]):not([pinned], [sharing], [crashed]):not([soundplaying], [muted], [activemedia-blocked]) .tab-content::before, .tabbrowser-tab[pinned][visuallyselected]:not([busy]):not(:hover) .tab-content::before { /* Box Model */ @@ -664,6 +665,7 @@ border-bottom: 2px solid var(--identity-icon-color); width: 16px; } + .tabbrowser-tab[busy] .tab-content::before, .tabbrowser-tab:not([image]):not([pinned], [sharing], [crashed]):not([soundplaying], [muted], [activemedia-blocked]) .tab-content::before { transform: translateY(10px) !important; /* None exist favicon */ }