mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-13 12:51:20 -08:00
23 lines
360 B
SCSS
23 lines
360 B
SCSS
@use "os" as *;
|
|
|
|
@mixin WindowControl_Right() {
|
|
@include OS($win) {
|
|
@content;
|
|
}
|
|
@include OS($linux) {
|
|
@media (-moz-gtk-csd-reversed-placement: 0) {
|
|
@content;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin WindowControl_Left() {
|
|
@include OS($mac) {
|
|
@content;
|
|
}
|
|
@include OS($linux) {
|
|
@media (-moz-gtk-csd-reversed-placement) {
|
|
@content;
|
|
}
|
|
}
|
|
}
|