mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-10 03:40:14 +00:00
Don't set titlebar padding to 0 on Windows10 even if the osx smoothing
pref is true
This commit is contained in:
parent
b22a0a05a2
commit
f66bdeb079
1 changed files with 3 additions and 1 deletions
|
@ -27,7 +27,9 @@ linux_gtk_window_control_patch.css
|
||||||
}
|
}
|
||||||
/* Mac specific. You should set that font-smoothing pref to true if you are on any platform where window controls are on left */
|
/* Mac specific. You should set that font-smoothing pref to true if you are on any platform where window controls are on left */
|
||||||
@supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled"){
|
@supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled"){
|
||||||
:root{ --uc-titlebar-padding: 0px !important }
|
@media not (-moz-os-version: windows-win10){
|
||||||
|
:root{ --uc-titlebar-padding: 0px !important }
|
||||||
|
}
|
||||||
.titlebar-buttonbox-container{ left:0; right: unset; }
|
.titlebar-buttonbox-container{ left:0; right: unset; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue