theme-store/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/chrome.css
nitro 674ae261cf Added macOS support to Hide Window Buttons theme
I haven't yet tested whether it works without `!important`
2024-08-18 21:40:39 +02:00

29 lines
No EOL
577 B
CSS

/* Remove minimize window button */
@media (-moz-bool-pref: "uc.my-preference.hide-minimize") {
.titlebar-min {
display: none;
}
}
/* Remove maximize window button */
@media (-moz-bool-pref: "uc.my-preference.hide-maximize") {
.titlebar-max {
display: none;
}
.titlebar-restore {
display: none;
}
}
/* Remove close window button */
@media (-moz-bool-pref: "uc.my-preference.hide-close") {
.titlebar-close {
display: none;
}
}
@media (-moz-mac-big-sur-theme: 1) {
hbox.titlebar-buttonbox-container {
display: none !important;
}
}