mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-15 15:20:33 -08:00
Fix: Icons - Login page #862
This commit is contained in:
parent
4545b12bbc
commit
651cf12fd3
4 changed files with 32 additions and 0 deletions
16
css/leptonContent.css
generated
16
css/leptonContent.css
generated
|
|
@ -3576,6 +3576,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@-moz-document url-prefix("about:logins") {
|
||||||
|
@supports -moz-bool-pref("userChrome.icon.context_menu") {
|
||||||
|
.menuitem-export {
|
||||||
|
background-image: url("../icons/toolbarButton-download.svg") !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/** Download Panel ************************************************************/
|
/** Download Panel ************************************************************/
|
||||||
|
|
@ -7312,6 +7319,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media (not (-moz-bool-pref: "userChrome.icon.disabled")) and (-moz-bool-pref: "userChrome.icon.menu") {
|
||||||
|
@-moz-document url-prefix("about:logins") {
|
||||||
|
@media (not (-moz-bool-pref: "userChrome.icon.disabled")) and (-moz-bool-pref: "userChrome.icon.menu") and (-moz-bool-pref: "userChrome.icon.context_menu") {
|
||||||
|
.menuitem-export {
|
||||||
|
background-image: url("../icons/toolbarButton-download.svg") !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
/** Download Panel ************************************************************/
|
/** Download Panel ************************************************************/
|
||||||
@-moz-document url-prefix("about:downloads") {
|
@-moz-document url-prefix("about:downloads") {
|
||||||
@media (prefers-reduced-motion: no-preference) and (-moz-bool-pref: "userChrome.decoration.download_panel") {
|
@media (prefers-reduced-motion: no-preference) and (-moz-bool-pref: "userChrome.decoration.download_panel") {
|
||||||
|
|
|
||||||
7
css/leptonContentESR.css
generated
7
css/leptonContentESR.css
generated
|
|
@ -3715,6 +3715,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@-moz-document url-prefix("about:logins") {
|
||||||
|
@supports -moz-bool-pref("userChrome.icon.context_menu") {
|
||||||
|
.menuitem-export {
|
||||||
|
background-image: url("../icons/toolbarButton-download.svg") !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/** Download Panel ************************************************************/
|
/** Download Panel ************************************************************/
|
||||||
|
|
|
||||||
|
|
@ -25,3 +25,9 @@
|
||||||
@import "../icons/addon_page";
|
@import "../icons/addon_page";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@include moz-document(url-prefix "about:logins") {
|
||||||
|
@include Option("userChrome.icon.context_menu") {
|
||||||
|
@import "../icons/login_page";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
3
src/icons/_login_page.scss
Normal file
3
src/icons/_login_page.scss
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
.menuitem-export {
|
||||||
|
background-image: url("../icons/toolbarButton-download.svg") !important;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue