From 8375278852afb89aece2f61e2f70922905bc37ed Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sun, 21 Nov 2021 22:56:54 +0900 Subject: [PATCH 1/6] Fix: Sidebar Field padding --- userChrome.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index b50c411..9cde4b0 100644 --- a/userChrome.css +++ b/userChrome.css @@ -1081,7 +1081,7 @@ --input-bgcolor: color-mix(in srgb, currentColor 30%, transparent); appearance: none !important; - padding: 8px 11px !important; + padding: 5px 8px !important; border: 1px solid var(--input-bgcolor) !important; border-radius: 4px; From c1a594f00a13a8b34492c3fbfc838fa42599f6c5 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Tue, 23 Nov 2021 09:36:33 +0900 Subject: [PATCH 2/6] Fix: Proton - Darkmode setting at library #272 --- userChrome.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index 9cde4b0..24bc048 100644 --- a/userChrome.css +++ b/userChrome.css @@ -2073,7 +2073,7 @@ --organizer-pane-field-border-color: color-mix(in srgb, currentColor 41%, transparent); } - @media (prefers-color-scheme: dark) { + @media (-moz-toolbar-prefers-color-scheme: dark), (prefers-color-scheme: dark) { :root { --organizer-color: rgb(251, 251, 254); --organizer-deemphasized-color: rgb(191, 191, 201); From 27c5babd1d11bbf8b7fa2c5e64e371d3d99b6cbd Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Tue, 23 Nov 2021 10:04:03 +0900 Subject: [PATCH 3/6] Fix: Nightly suggestion table color --- userContent.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/userContent.css b/userContent.css index 91e9c0d..e446d4f 100644 --- a/userContent.css +++ b/userContent.css @@ -131,7 +131,8 @@ /*- Fix Color For Nightly ------------------------------------------------*/ .contentSearchSuggestionTable, .contentSearchHeaderRow, - .contentSearchHeader { + .contentSearchHeader, + .contentSearchSuggestionsContainer { color: var(--newtab-text-primary-color) !important; background: var(--newtab-search-background-color) !important; } From cf2d8291efd067da7276f28f30be8b80d535895e Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Wed, 24 Nov 2021 09:14:36 +0900 Subject: [PATCH 4/6] Fix: System Default Theme - Win10's photon style context bar color --- userChrome.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index 24bc048..d3ec3b8 100644 --- a/userChrome.css +++ b/userChrome.css @@ -407,7 +407,6 @@ --autocomplete-popup-hover-background: var(--win-button-hover-bgcolor) !important; /* Button Border Color */ - --tab-line-color: var(--win-button-border) !important; --checkbox-border-color: var(--win-button-border) !important; --input-border-color: var(--win-button-border) !important; --autocomplete-popup-separator-color: var(--win-button-border) !important; @@ -435,6 +434,7 @@ --input-error-border-color: var(--win-error-color) !important; /* Others */ + --tab-line-color: Highlight !important; --tab-selected-bgcolor: unset !important; --tabs-border-color: transparent !important; --checkbox-checked-border-color: transparent !important; From e9de25b286b0af3a1448608b580da1b616ac35a0 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Wed, 24 Nov 2021 09:15:37 +0900 Subject: [PATCH 5/6] Fix: System Default Theme - Win10's light theme --- userChrome.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/userChrome.css b/userChrome.css index d3ec3b8..ad1fa38 100644 --- a/userChrome.css +++ b/userChrome.css @@ -448,6 +448,9 @@ --panelview-toolbarbutton-focus-box-shadow: inset 0 0 0 2px var(--focus-outline-color) !important; } + #navigator-toolbox:not(:-moz-lwtheme) { + background: var(--lwt-accent-color) !important; + } /*- Separator ------------------------------------------------------------*/ :root:not(:-moz-lwtheme) { From f445ae58d29019c5cd55571611f22eab9148af28 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Thu, 25 Nov 2021 09:03:26 +0900 Subject: [PATCH 6/6] Fix: Context Menu - Win7/8's menu padding #275 --- userChrome.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/userChrome.css b/userChrome.css index ad1fa38..9227b54 100644 --- a/userChrome.css +++ b/userChrome.css @@ -2954,9 +2954,6 @@ /* Original: 0.5em */ padding-block: var(--menu-padding) !important; } - menupopup > menu { - padding-inline-start: 0.5em; - } @supports not -moz-bool-pref("layout.css.osx-font-smoothing.enabled") { :root:not([uidensity="touch"]) .menu-text, @@ -2987,6 +2984,12 @@ } } + @media (-moz-gtk-csd-available) { + menupopup > menu { + padding-inline-start: 0.5em; + } + } + /* Arrow Icon Align to Right */ .bookmark-item.subviewbutton > .menu-right { margin-inline-end: 0 !important;