From b3e1b844513eb3c52a32a25dd4e48f00a2d838b2 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Fri, 13 Sep 2024 16:12:34 +0900 Subject: [PATCH] Fix: Icons - Report broken site at Protection popup #971 --- css/leptonChrome.css | 8 ++++++++ css/leptonChromeESR.css | 3 +++ src/icons/_panel.scss | 4 ++++ 3 files changed, 15 insertions(+) diff --git a/css/leptonChrome.css b/css/leptonChrome.css index c66cb1e..5afefdc 100644 --- a/css/leptonChrome.css +++ b/css/leptonChrome.css @@ -11659,6 +11659,9 @@ fill: currentColor; margin-inline-end: 1em; } + #protections-popup-report-broken-site-button { + list-style-image: url("chrome://global/skin/icons/lightbulb.svg"); + } #protections-popup-settings-button > .protections-popup-settings-icon, #protections-popup-multiView .panel-subview-footer-button { list-style-image: url("chrome://global/skin/icons/settings.svg"); @@ -26700,6 +26703,11 @@ margin-inline-end: 1em; } } +@media (not (-moz-bool-pref: "userChrome.icon.disabled")) and (-moz-bool-pref: "userChrome.icon.panel") { + #protections-popup-report-broken-site-button { + list-style-image: url("chrome://global/skin/icons/lightbulb.svg"); + } +} @media (not (-moz-bool-pref: "userChrome.icon.disabled")) and (-moz-bool-pref: "userChrome.icon.panel") { #protections-popup-settings-button > .protections-popup-settings-icon, #protections-popup-multiView .panel-subview-footer-button { diff --git a/css/leptonChromeESR.css b/css/leptonChromeESR.css index c335cce..ffd5469 100644 --- a/css/leptonChromeESR.css +++ b/css/leptonChromeESR.css @@ -12097,6 +12097,9 @@ fill: currentColor; margin-inline-end: 1em; } + #protections-popup-report-broken-site-button { + list-style-image: url("chrome://global/skin/icons/lightbulb.svg"); + } #protections-popup-settings-button > .protections-popup-settings-icon, #protections-popup-multiView .panel-subview-footer-button { list-style-image: url("chrome://global/skin/icons/settings.svg"); diff --git a/src/icons/_panel.scss b/src/icons/_panel.scss index 9240e7b..7c41d90 100644 --- a/src/icons/_panel.scss +++ b/src/icons/_panel.scss @@ -500,6 +500,10 @@ panelMenuBookmarkThisPage[starred] { margin-inline-end: 1em; } +#protections-popup-report-broken-site-button { + list-style-image: url("chrome://global/skin/icons/lightbulb.svg"); +} + #protections-popup-settings-button > .protections-popup-settings-icon, #protections-popup-multiView .panel-subview-footer-button { list-style-image: url("chrome://global/skin/icons/settings.svg");