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");