From 00afdf140be19fcb33677e4b4ff35692c75d4bb7 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Mon, 7 Oct 2024 02:51:27 +0900 Subject: [PATCH] Fix: Icons - List all tabs icon --- css/leptonChrome.css | 24 ++++++++++++++++++++++++ css/leptonChromeESR.css | 12 ++++++++++++ src/icons/_global_menubar.scss | 13 +++++++++++++ 3 files changed, 49 insertions(+) diff --git a/css/leptonChrome.css b/css/leptonChrome.css index de754de3..e03f87e6 100644 --- a/css/leptonChrome.css +++ b/css/leptonChrome.css @@ -13312,6 +13312,18 @@ #helpMenu { --menuitem-image: url("chrome://global/skin/icons/help.svg"); } + /*= Others ===================================================================*/ + #alltabs-button { + list-style-image: url("chrome://global/skin/icons/arrow-down.svg") !important; + } + #alltabs-button > .toolbarbutton-badge-stack > .toolbarbutton-icon { + /* Original + width: 20px; + margin: -2px; + */ + width: 16px !important; + margin: 0 !important; + } } @supports -moz-bool-pref("userChrome.icon.global_menu") { /** Global Menu ***************************************************************/ @@ -28907,6 +28919,18 @@ #helpMenu { --menuitem-image: url("chrome://global/skin/icons/help.svg"); } + /*= Others ===================================================================*/ + #alltabs-button { + list-style-image: url("chrome://global/skin/icons/arrow-down.svg") !important; + } + #alltabs-button > .toolbarbutton-badge-stack > .toolbarbutton-icon { + /* Original + width: 20px; + margin: -2px; + */ + width: 16px !important; + margin: 0 !important; + } } @media (not (-moz-bool-pref: "userChrome.icon.disabled")) and (-moz-bool-pref: "userChrome.icon.menu") and (-moz-bool-pref: "userChrome.icon.global_menu") { /** Global Menu ***************************************************************/ diff --git a/css/leptonChromeESR.css b/css/leptonChromeESR.css index 284a4ed4..af55d016 100644 --- a/css/leptonChromeESR.css +++ b/css/leptonChromeESR.css @@ -13944,6 +13944,18 @@ #helpMenu { --menuitem-image: url("chrome://global/skin/icons/help.svg"); } + /*= Others ===================================================================*/ + #alltabs-button { + list-style-image: url("chrome://global/skin/icons/arrow-down.svg") !important; + } + #alltabs-button > .toolbarbutton-badge-stack > .toolbarbutton-icon { + /* Original + width: 20px; + margin: -2px; + */ + width: 16px !important; + margin: 0 !important; + } } @supports -moz-bool-pref("userChrome.icon.global_menu") { /** Global Menu ***************************************************************/ diff --git a/src/icons/_global_menubar.scss b/src/icons/_global_menubar.scss index 9801021e..4e21a5cc 100644 --- a/src/icons/_global_menubar.scss +++ b/src/icons/_global_menubar.scss @@ -23,3 +23,16 @@ #helpMenu { --menuitem-image: url("chrome://global/skin/icons/help.svg"); } + +/*= Others ===================================================================*/ +#alltabs-button { + list-style-image: url("chrome://global/skin/icons/arrow-down.svg") !important; + > .toolbarbutton-badge-stack > .toolbarbutton-icon { + /* Original + width: 20px; + margin: -2px; + */ + width: 16px !important; + margin: 0 !important; + } +}