Files
firefox-csshacks/chrome/window_control_force_linux_system_style.css
MrOtherGuy fc7b95c037 Remove background-image from titlebar-button > image drawn by firefox
Nowadays the icon is drawn as background-image, not list-style-image
2024-03-24 07:30:32 +02:00

24 lines
900 B
CSS

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/window_control_force_linux_system_style.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* This style makes Firefox use your linux system style for window control buttons. Normally those are only used with default system (auto) theme. */
.titlebar-button{
list-style-image: none !important;
appearance: auto !important;
}
.titlebar-button > .toolbarbutton-icon{
background: none !important;
}
.titlebar-min {
-moz-default-appearance: -moz-window-button-minimize !important;
}
.titlebar-max {
-moz-default-appearance: -moz-window-button-maximize !important;
}
.titlebar-restore {
-moz-default-appearance: -moz-window-button-restore !important;
}
.titlebar-close {
-moz-default-appearance: -moz-window-button-close !important;
}