mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-02-12 10:43:09 -08:00
Remove `-moz-document` warning to make other warnings visible. https://github.com/sass/sass/issues/3182#issuecomment-1358425926 There is also some improvement of compilation time by reducing the output.
26 lines
809 B
SCSS
26 lines
809 B
SCSS
@include moz-document(url "chrome://browser/content/places/places.xhtml") {
|
|
/** Library - Icons Replace *************************************************/
|
|
@include Option("userChrome.icon.library") {
|
|
@import "folder_icons";
|
|
@import "menubar";
|
|
}
|
|
|
|
@include OS($linux) {
|
|
/*= Layout Fixes =========================================================*/
|
|
menupopup menu {
|
|
padding-block: 4px;
|
|
}
|
|
|
|
.menu-right {
|
|
width: 16px !important; /* Original: 1ex */
|
|
background-image: url("chrome://global/skin/icons/arrow-right.svg");
|
|
background-position: right center;
|
|
}
|
|
|
|
/*= Proton ===============================================================*/
|
|
@include Option("userContent.page.proton") {
|
|
@import "proton";
|
|
@import "proton_contents";
|
|
}
|
|
}
|
|
}
|