From c45f05901e9b4d81e5e3119699417e7d066f1570 Mon Sep 17 00:00:00 2001 From: Jonta <359397+Jonta@users.noreply.github.com> Date: Thu, 12 Aug 2021 22:09:15 +0200 Subject: [PATCH 01/22] Grammar Space in front of parenthesis --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.org b/README.org index 51cc624..4164e78 100644 --- a/README.org +++ b/README.org @@ -79,7 +79,7 @@ ** Installation Guide - *Script Installation(experimental)* + *Script Installation (experimental)* Linux, mac users: #+BEGIN_SRC bash From e72cc9ad1eef50c6e079e6e14eda7d9990fb4c45 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Fri, 13 Aug 2021 09:43:38 +0900 Subject: [PATCH 02/22] Fix: Installer - remove chrome target #152 --- install.ps1 | 1 + install.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/install.ps1 b/install.ps1 index be03810..486c7dc 100644 --- a/install.ps1 +++ b/install.ps1 @@ -139,6 +139,7 @@ function Copy-Auto() { Write-Host "${target} alreay exist." Write-Host "Now Backup.." Copy-Auto "${target}" "${target}.bak" + Remove-Item "${target}" -Recurse -Force Write-Host "" } diff --git a/install.sh b/install.sh index 99a2305..6958049 100755 --- a/install.sh +++ b/install.sh @@ -126,6 +126,7 @@ autocp() { echo "${target} alreay exist." echo "Now Backup.." autocp "${target}" "${target}.bak" + rm -rf "${target}" echo "" fi From 22f811b34a102c1d7a50f97fd1e591b2e159c04b Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Fri, 13 Aug 2021 09:51:27 +0900 Subject: [PATCH 03/22] Doc: Feature request template's label --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index be77263..591518f 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -2,7 +2,7 @@ name: Feature request about: Suggest an idea for this project title: '' -labels: '' +labels: 'Issue::Enhancement' assignees: '' --- From cdc12c8330e7ed6540b5599d550e89a9fbc9c6ab Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Fri, 13 Aug 2021 12:28:02 +0900 Subject: [PATCH 04/22] Fix: Context Menu - win8 looks like win7 #158 --- userChrome.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/userChrome.css b/userChrome.css index e567cee..805ec1f 100644 --- a/userChrome.css +++ b/userChrome.css @@ -1525,7 +1525,8 @@ } } - @media (-moz-os-version: windows-win7 ){ + @media (-moz-os-version: windows-win7 ), + (-moz-os-version: windows-win8 ) { :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem:not(.menuitem-iconic, [type="checkbox"], [checked="true"], .in-menulist), :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menu:not(.menu-iconic, [type="checkbox"], [checked="true"], .in-menulist), #blockedPopupDontShowMessage { @@ -1533,8 +1534,7 @@ padding-inline-start: 0 !important; } } - @media (-moz-os-version: windows-win8 ), - (-moz-os-version: windows-win10) { + @media (-moz-os-version: windows-win10) { :root { --context-menu-background-padding: 1em; } From 425d4e51984b3954ac62678630dbffdec29f4409 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Fri, 13 Aug 2021 22:46:10 +0900 Subject: [PATCH 05/22] Fix: Bookmark Menu - Remove shadow #136 #140 --- userChrome.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index 805ec1f..889dda7 100644 --- a/userChrome.css +++ b/userChrome.css @@ -278,7 +278,7 @@ } /* Fallback background */ - menupopup { + menupopup:not(.cui-widget-panel.cui-widget-panelview) { background-color: var(--lwt-accent-color, var(--in-content-page-background)) !important; } From 30b85afe68a3f9208d821463e8e22faf01146cce Mon Sep 17 00:00:00 2001 From: MS_Y Date: Fri, 13 Aug 2021 14:20:50 +0000 Subject: [PATCH 06/22] Fix: Book toolbar menu - Remove shadow #136 --- userChrome.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index 889dda7..727d9f0 100644 --- a/userChrome.css +++ b/userChrome.css @@ -278,7 +278,7 @@ } /* Fallback background */ - menupopup:not(.cui-widget-panel.cui-widget-panelview) { + menupopup:not(.cui-widget-panel.cui-widget-panelview, [context="placesContext"]) { background-color: var(--lwt-accent-color, var(--in-content-page-background)) !important; } From c81e95c862fd2c6632ae27b539e623b7c7ddd317 Mon Sep 17 00:00:00 2001 From: hellojaccc Date: Fri, 13 Aug 2021 18:55:19 +0900 Subject: [PATCH 07/22] Fix: Installer - Improve lepton_error_message OS NOT DETECTED Ask user if they installed git. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 6958049..e6658ab 100755 --- a/install.sh +++ b/install.sh @@ -74,7 +74,7 @@ check_git() { elif [[ "${OSTYPE}" == "darwin"* ]]; then mac_command_line_developer_tools else - lepton_error_message "OS NOT DETECTED, couldn't install required packages" + lepton_error_message "OS NOT DETECTED, couldn't install required packages. Please manually install git." fi fi From 6d86cb918fa66b6970ab80590e70737c59707bf7 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sat, 14 Aug 2021 19:28:12 +0900 Subject: [PATCH 08/22] Fix: Panel - Checkbox item padding #136 --- userChrome.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/userChrome.css b/userChrome.css index 727d9f0..694e30a 100644 --- a/userChrome.css +++ b/userChrome.css @@ -1149,6 +1149,10 @@ margin-inline-end: 0 !important; } + .subviewbutton[type="checkbox"]:not([checked=true]) > .toolbarbutton-text { + margin-left: 16px !important; + } + /* Icons Color */ #appMenu-multiView .subviewbutton::before, #appMenu-proton-update-banner::before, From 85bf9fa08f04c711d6bad9ab6d0c67f554a397c3 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sat, 14 Aug 2021 19:49:22 +0900 Subject: [PATCH 09/22] Fix: Install - Powershell permission, path setting #147 --- README.org | 2 +- install.ps1 | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index 4164e78..6cefdc6 100644 --- a/README.org +++ b/README.org @@ -88,7 +88,7 @@ Windows users: Run powershell as administrator #+BEGIN_SRC powershell - Powershell -c "iwr https://raw.githubusercontent.com/black7375/Firefox-UI-Fix/master/install.ps1 -useb | iex" + Powershell -c "Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iwr https://raw.githubusercontent.com/black7375/Firefox-UI-Fix/master/install.ps1 -useb | iex" #+END_SRC *Manual Installation* diff --git a/install.ps1 b/install.ps1 index 486c7dc..9132fe2 100644 --- a/install.ps1 +++ b/install.ps1 @@ -95,6 +95,7 @@ function Install-Choco() { Set-ExecutionPolicy Bypass -Scope Process -Force [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072 iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) + $env:Path += ";C:\ProgramData\chocolatey" } function Check-Git() { @@ -103,6 +104,7 @@ function Check-Git() { Install-Choco } choco install git -y + $env:Path += ";C:\Program Files\Git\bin" } Lepton-OKMessage "Required - git" From f9eb411163f08d33dcfc448ab645c9c9c03dd03d Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sat, 14 Aug 2021 21:17:10 +0900 Subject: [PATCH 10/22] Fix: Theme - compatibility for windows8 #149 --- userChrome.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/userChrome.css b/userChrome.css index 694e30a..82b34a2 100644 --- a/userChrome.css +++ b/userChrome.css @@ -37,12 +37,15 @@ --tabs-border-color: rgba(0,0,0,.3); } - /*= Windows 7 ==============================================================*/ - @media (-moz-os-version: windows-win7) { + /** Windows 7, 8 - Compatibility ********************************************/ + @media (-moz-os-version: windows-win7), + (-moz-os-version: windows-win8) { /* Header Color */ :root:not([lwtheme-image]) #navigator-toolbox:-moz-lwtheme { background-color: var(--lwt-accent-color) !important; } + } + @media (-moz-os-version: windows-win7) { #TabsToolbar:-moz-lwtheme { color: var(--lwt-text-color) !important; From c67462da45941ed2efff6cc6c259ab98a80108d5 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sat, 14 Aug 2021 21:48:32 +0900 Subject: [PATCH 11/22] Fix: Book toolbar menu - Remove shadow again #136 --- userChrome.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index 82b34a2..def33da 100644 --- a/userChrome.css +++ b/userChrome.css @@ -281,7 +281,7 @@ } /* Fallback background */ - menupopup:not(.cui-widget-panel.cui-widget-panelview, [context="placesContext"]) { + menupopup:not(.cui-widget-panel.cui-widget-panelview, [placespopup="true"]) { background-color: var(--lwt-accent-color, var(--in-content-page-background)) !important; } From 9f6c279c2d4b0c3bbc10bdb756031b29dc7a1bcc Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sat, 14 Aug 2021 23:52:39 +0900 Subject: [PATCH 12/22] Fix: Menu - Padding algin for windows7, windows8 #145 #161 --- userChrome.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/userChrome.css b/userChrome.css index def33da..f9e9cff 100644 --- a/userChrome.css +++ b/userChrome.css @@ -623,7 +623,7 @@ /*= Menu - Reduce Padding ==================================================*/ :root { - --menu-padding: 0.35em; + --menu-padding: 0.35em; /* Win7, 8: 0px */ } :root[uidensity=compact] { --menu-padding: 0.25em; @@ -1512,8 +1512,8 @@ --context-menu-background-padding-default: 5px; --context-menu-background-padding: var(--context-menu-background-padding-default); } - :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem, - :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menu, + :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem:not(.menuitem-iconic), + :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menu:not(.menu-iconic), #blockedPopupDontShowMessage { background-position: left var(--context-menu-background-padding) center !important; padding-inline-start: var(--context-menu-background-padding) !important; @@ -1534,6 +1534,9 @@ @media (-moz-os-version: windows-win7 ), (-moz-os-version: windows-win8 ) { + :root { + --context-menu-background-padding-default: 3px; + } :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menuitem:not(.menuitem-iconic, [type="checkbox"], [checked="true"], .in-menulist), :not(menu, #ContentSelectDropdown, #context-navigation) > menupopup > menu:not(.menu-iconic, [type="checkbox"], [checked="true"], .in-menulist), #blockedPopupDontShowMessage { From caadb8fc1c68eda9e9c49d566cfe881ca53b9ec2 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sun, 15 Aug 2021 01:56:52 +0900 Subject: [PATCH 13/22] Add: Windows7 Default Theme - fix for #164 --- userChrome.css | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index f9e9cff..dfe6648 100644 --- a/userChrome.css +++ b/userChrome.css @@ -48,8 +48,10 @@ @media (-moz-os-version: windows-win7) { #TabsToolbar:-moz-lwtheme { color: var(--lwt-text-color) !important; + } - /* Remove Aero */ + /* Remove Aero */ + #TabsToolbar { /* Original: radial-gradient(eclipse at bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5) 80%, transparent) */ background-image: unset !important; } @@ -71,6 +73,24 @@ } } + /*= Windows7 - Aero Based Theme ============================================*/ + @media (-moz-os-version: windows-win7) { + #TabsToolbar:not(:-moz-lwtheme) { + --background-color: rgb(229, 229, 235); + } + .tabbrowser-tab > .tab-stack > .tab-background:not([selected="true"], [multiselected]) { + color: var(--background-color); + background-color: color-mix(in srgb, currentColor 60%, transparent); + } + .tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected="true"], [multiselected]) { + background-color: color-mix(in srgb, currentColor 85%, transparent) !important; /* Original: color-mix(in srgb, currentColor 11%, transparent) */ + } + #TabsToolbar:not(:-moz-lwtheme) .toolbarbutton-1 > .toolbarbutton-icon { + color: var(--background-color); + background-color: color-mix(in srgb, currentColor 50%, transparent); + } + } + /*= Windows10 - Titlebar accent color ======================================*/ @media (-moz-windows-accent-color-in-titlebar) { /* Tab Bar */ From e050934156b8ba96f3b460a2defe0b43c9a7ddef Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sun, 15 Aug 2021 19:52:05 +0900 Subject: [PATCH 14/22] Fix: Notification Popup - Remove transparent at light theme #165 --- userChrome.css | 61 +++++++++++++++++++++++--------------------------- 1 file changed, 28 insertions(+), 33 deletions(-) diff --git a/userChrome.css b/userChrome.css index dfe6648..ee6b300 100644 --- a/userChrome.css +++ b/userChrome.css @@ -287,7 +287,6 @@ } /*== Menu color ===========================================================*/ - :root, menupopup { /* is same as toolbar color https://github.com/mozilla/gecko-dev/blob/master/toolkit/themes/windows/global/global.css#L17-L67 */ --menu-color: var(--toolbar-color, var(--in-content-page-color)) !important; @@ -316,13 +315,30 @@ /*= Notification ===========================================================*/ @-moz-document url("chrome://global/content/alerts/alert.xhtml") { + /* Color */ + :root{ + --menu-color: #15141a; + --menu-background-color: #f9f9fb; + --menu-border-color: #cfcfd8; + --menuitem-hover-background-color: #e0e0e6; + } + @media (-moz-toolbar-prefers-color-scheme:dark) { + :root { + --menu-border-color: rgba(107,107,107,.3); + --menu-color: #fbfbfe; + --menu-background-color: #2b2a33; + --menuitem-hover-background-color: #52525e; + } + #alertSourceLabel { color: rgb(5,209,241) !important; } + } + /* line below removes background from the notification "window" on linux */ #alertNotification{ background: transparent !important; } #alertBox { - color: var(--menu-color, #15141a) !important; - background-color: var(--menu-background-color, #f9f9fb) !important; - border-color: var(--menu-border-color, #cfcfd8) !important; + color: var(--menu-color) !important; + background-color: var(--menu-background-color) !important; + border-color: var(--menu-border-color) !important; border-radius: 6px !important; -moz-window-shadow: cliprounded !important; } @@ -333,6 +349,14 @@ margin-inline: 0 !important; margin-bottom: -4px !important; } + .close-icon, + #alertSettings { + background: transparent !important + } + .close-icon:hover > .toolbarbutton-icon, + #alertSettings:is(:hover,[open]) > .button-box > .box-inherit { + background-color: var(--menuitem-hover-background-color, #e0e0e6) !important; + } /* Shape */ .close-icon > .toolbarbutton-icon, @@ -347,35 +371,6 @@ #alertSettings > .button-box > .box-inherit > .button-icon { padding: 1px; } - - /* Color */ - .close-icon, - #alertSettings { - background: transparent !important - } - .close-icon:hover > .toolbarbutton-icon, - #alertSettings:is(:hover,[open]) > .button-box > .box-inherit { - background-color: var(--menuitem-hover-background-color, #e0e0e6) !important; - } - - @media (-moz-toolbar-prefers-color-scheme:dark) { - :root { - --menu-border-color: rgba(107,107,107,.3) !important; - } - - #alertBox { - color: var(--menu-color, #fbfbfe) !important; - background-color: var(--menu-background-color, #2b2a33) !important; - } - .close-icon:hover > .toolbarbutton-icon, - #alertSettings:is(:hover, [open]) > .button-box > .box-inherit { - background-color: var(--menuitem-hover-background-color, #52525e) !important; - } - - #alertSourceLabel { - color: rgb(5,209,241) !important; - } - } } /*= Downloads ==============================================================*/ From 8499f807ee73ef5bfd9b16bd0b75c77c0047d0d3 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sun, 15 Aug 2021 20:15:31 +0900 Subject: [PATCH 15/22] Fix: Addon.org - Button, permission icon --- userContent.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/userContent.css b/userContent.css index 6e51a02..fec4d99 100644 --- a/userContent.css +++ b/userContent.css @@ -379,7 +379,8 @@ .Select, .Button--neutral, .Button--neutral:link, - .Notice-button { + .Notice-button, + .AMInstallButton .AMInstallButton-loading-button { background-color: var(--in-content-button-background) !important; } .Button--neutral.Button--micro:not(.Button--disabled):hover, @@ -441,12 +442,13 @@ .Notice-icon { filter: invert(65%) !important; } + .PermissionsCard-learn-more .Icon, + .Permission .Icon { + filter: invert(100%) !important; + } .Icon-heart { filter: brightness(0) !important; } - .Permission .Icon { - filter: grayscale(100%) brightness(30) !important; - } /* Others */ .DropdownMenu-items { From f9781f9c26e2e805ab4848f5fd30d00288fff2d6 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sun, 15 Aug 2021 22:35:39 +0900 Subject: [PATCH 16/22] Fix: Bottom rounded tab - System light theme #138 --- userChrome.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/userChrome.css b/userChrome.css index ee6b300..b944dcf 100644 --- a/userChrome.css +++ b/userChrome.css @@ -792,8 +792,10 @@ --tab-corner-padding: 1px; } - :root[lwtheme="true"] tab[visuallyselected] > stack::before, - :root[lwtheme="true"] tab[visuallyselected] > stack::after { + :root[gtktiledwindow="true"][lwtheme="true"] tab[visuallyselected] > stack::before, + :root:not([gtktiledwindow="true"]) tab[visuallyselected] > stack::before, + :root[gtktiledwindow="true"][lwtheme="true"] tab[visuallyselected] > stack::after, + :root:not([gtktiledwindow="true"]) tab[visuallyselected] > stack::after { /* Box */ content: "" !important; display: block !important; @@ -815,11 +817,13 @@ background-position-y: bottom; } - :root[lwtheme="true"] tab[visuallyselected] > stack::before { + :root[gtktiledwindow="true"][lwtheme="true"] tab[visuallyselected] > stack::before, + :root:not([gtktiledwindow="true"]) tab[visuallyselected] > stack::before { left: calc(var(--tab-corner-padding) - var(--tab-corner-rounding)) !important; background-image: url(./icons/tab-bottom-corner-left.svg); } - :root[lwtheme="true"] tab[visuallyselected] > stack::after { + :root[gtktiledwindow="true"][lwtheme="true"] tab[visuallyselected] > stack::after, + :root:not([gtktiledwindow="true"]) tab[visuallyselected] > stack::after { left: auto; right: calc(var(--tab-corner-padding) - var(--tab-corner-rounding)); background-image: url(./icons/tab-bottom-corner-right.svg); From 977cb82b2117727ecb0439e887c27a20861a1bee Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Sun, 15 Aug 2021 23:12:40 +0900 Subject: [PATCH 17/22] Fix: Default Theme - Constrast for system light theme #144 --- userChrome.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index b944dcf..4b31dd4 100644 --- a/userChrome.css +++ b/userChrome.css @@ -1,9 +1,12 @@ @media (-moz-proton) { /** Default Thme - Contrast *************************************************/ /*= Lightmode - Color darker ===============================================*/ - :root[lwtheme-mozlightdark][lwthemetextcolor="dark"] { + :root[lwtheme-mozlightdark]:not([lwthemetextcolor="bright"]) { --lwt-accent-color: rgb(229, 229, 235) !important; /* Original: rgb(240, 240, 244) */ } + :root[lwtheme-mozlightdark]:not([lwthemetextcolor="bright"]) #navigator-toolbox { + background-color: var(--lwt-accent-color); + } /*= Darkmode - Color lighter ===============================================*/ :root[lwtheme-mozlightdark][lwthemetextcolor="bright"] { From 52bf3b1729636802e236aaa3e13f474c9f8470a4 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Mon, 16 Aug 2021 13:31:55 +0900 Subject: [PATCH 18/22] Fix: Menu - Show radio button #168 --- userChrome.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/userChrome.css b/userChrome.css index 4b31dd4..ae41f80 100644 --- a/userChrome.css +++ b/userChrome.css @@ -1502,8 +1502,8 @@ /** Context Menu - Icons ****************************************************/ /*= Layout =================================================================*/ - menupopup menuitem:not([type="checkbox"]), - menupopup menu:not([type="checkbox"]) { + menupopup menuitem:not([type="checkbox"], [type="radio"]), + menupopup menu:not([type="checkbox"], [type="radio"]) { -moz-appearance: none !important; /* Linux: menulist */ } From 7973d93c935a55ecec43a8a9097c8e77909afc24 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Mon, 16 Aug 2021 16:31:54 +0900 Subject: [PATCH 19/22] Fix: Menu - Color compatibility with arrowpanel color #157 --- userChrome.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/userChrome.css b/userChrome.css index ae41f80..d394cb3 100644 --- a/userChrome.css +++ b/userChrome.css @@ -292,8 +292,8 @@ /*== Menu color ===========================================================*/ menupopup { /* is same as toolbar color https://github.com/mozilla/gecko-dev/blob/master/toolkit/themes/windows/global/global.css#L17-L67 */ - --menu-color: var(--toolbar-color, var(--in-content-page-color)) !important; - --menu-background-color: var(--toolbar-bgcolor, var(--in-content-button-background)) !important; + --menu-color: var(--arrowpanel-color, var(--in-content-page-color)) !important; + --menu-background-color: var(--arrowpanel-background, var(--in-content-button-background)) !important; --menu-border-color: var(--toolbarbutton-active-background, var(--button-active-bgcolor, var(--card-outline-color))) !important; --menuitem-hover-background-color: var(--toolbarbutton-hover-background, var(--button-hover-bgcolor, var(--in-content-button-background-hover))) !important; From 8da3a077a159e253b8ad84cec711705fb78a60f6 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Mon, 16 Aug 2021 18:10:22 +0900 Subject: [PATCH 20/22] Fix: Menu - Default theme color preservation #157 --- userChrome.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/userChrome.css b/userChrome.css index d394cb3..5d2e201 100644 --- a/userChrome.css +++ b/userChrome.css @@ -307,6 +307,12 @@ background-color: var(--lwt-accent-color, var(--in-content-page-background)) !important; } + /* Default theme color preservation */ + :root[lwtheme-mozlightdark] menupopup { + --menu-color: var(--toolbar-color) !important; + --menu-background-color: var(--toolbar-bgcolor) !important; + } + /* Fully Dark Mode **********************************************************/ /*= Remove White Flash =====================================================*/ #tabbrowser-tabbox, From ad3513f8b099f59a5e633957adcb3e5550f5dd78 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Mon, 16 Aug 2021 20:40:04 +0900 Subject: [PATCH 21/22] Fix: Theme - lwtheme image fill cover #170 --- userChrome.css | 1 + 1 file changed, 1 insertion(+) diff --git a/userChrome.css b/userChrome.css index 5d2e201..66e4fab 100644 --- a/userChrome.css +++ b/userChrome.css @@ -27,6 +27,7 @@ background-image: var(--lwt-header-image) !important; /* Original: var(--lwt-header-image) */ background-repeat: no-repeat !important; background-position: right top !important; + background-size : cover; } :root[lwtheme-image] #navigator-toolbox:-moz-lwtheme { background-image: var(--lwt-additional-images) !important; /* Original: var(--lwt-header-image), var(--lwt-additional-images); */ From 8fa158297fc0a6f14398ea02bfc8250d5c2c6ef1 Mon Sep 17 00:00:00 2001 From: BlaCk_Void Date: Mon, 16 Aug 2021 20:51:46 +0900 Subject: [PATCH 22/22] Doc: update CREDIT, Bug Template --- .github/ISSUE_TEMPLATE/bug_report.md | 1 + CREDITS | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index d6f9957..2731bd0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -35,6 +35,7 @@ Check like `- [x]`. - [ ] Alpenglow(System: Dark) - [ ] System Default - GTK Theme Name(Only Linux User): [sample] Adwaita, Adwaita-Dark, Breath, Breath-Dark + - [ ] Others: [sample] [Photon Colors](https://addons.mozilla.org/en-US/firefox/addon/photon-colors/), [Google Chrome Dark](https://addons.mozilla.org/en-US/firefox/addon/google-chrome-dark/), [Fairytale Of Nature](https://addons.mozilla.org/en-US/firefox/addon/fairytale-of-nature/) **Additional context** Add any other context about the problem here. diff --git a/CREDITS b/CREDITS index 23f3634..e6181fa 100644 --- a/CREDITS +++ b/CREDITS @@ -96,10 +96,17 @@ N: Burak Yigit Kaya E: ben@byk.im W: https://byk.im/ +N: hellojaccc +E: kim@taekyeong.me +W: https://github.com/hellojaccc + N: James Upjohn E: jammehcow@jammehcow.co.nz W: https://github.com/jammehcow +N: Jonta +W: https://github.com/Jonta + N: mamen W: https://www.mamen.at