Fix: Icons - Protection icon #1047

But not works at `.toolbarbutton-icon`
This commit is contained in:
alstjr7375 2024-12-25 06:46:15 +09:00
parent 0a1dd71991
commit f4ed175838
3 changed files with 18 additions and 0 deletions

8
css/leptonChrome.css generated
View file

@ -13846,6 +13846,10 @@
{
content: url("../icons/developer.svg") !important;
}
.tabbrowser-tab:is([image="chrome://browser/skin/controlcenter/dashboard.svg"]) .tab-icon-image
{
content: url("../icons/dashboard.svg") !important;
}
}
/** Icons for fork browsers ***************************************************/
/*= Waterfox =================================================================*/
@ -29792,6 +29796,10 @@
{
content: url("../icons/developer.svg") !important;
}
.tabbrowser-tab:is([image="chrome://browser/skin/controlcenter/dashboard.svg"]) .tab-icon-image
{
content: url("../icons/dashboard.svg") !important;
}
}
@media (not (-moz-bool-pref: "userChrome.icon.disabled")) and (-moz-bool-pref: "userChrome.icon.panel") {
#appMenu-restart-button {

View file

@ -14478,6 +14478,10 @@
{
content: url("../icons/developer.svg") !important;
}
.tabbrowser-tab:is([image="chrome://browser/skin/controlcenter/dashboard.svg"]) .tab-icon-image
{
content: url("../icons/dashboard.svg") !important;
}
}
/** Icons for fork browsers ***************************************************/
/*= Waterfox =================================================================*/

View file

@ -20,3 +20,9 @@
) .tab-icon-image {
content: url("../icons/developer.svg") !important;
}
.tabbrowser-tab:is(
[image="chrome://browser/skin/controlcenter/dashboard.svg"]
) .tab-icon-image {
content: url("../icons/dashboard.svg") !important;
}