mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-14 20:23:53 +02:00
33 lines
No EOL
626 B
CSS
33 lines
No EOL
626 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) {
|
|
.titlebar-buttonbox-container {
|
|
display: none !important;
|
|
}
|
|
|
|
.window-controls{
|
|
display: none !important;
|
|
}
|
|
} |