mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-13 04:41:45 -08:00
26 lines
484 B
SCSS
26 lines
484 B
SCSS
@use "option" as *;
|
|
|
|
@mixin NativeMenu() {
|
|
@include Option("widget.macos.native-context-menus", "widget.gtk.native-context-menus") {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin NativeMenuPopup() {
|
|
menupopup:is(#historyMenuPopup, #bookmarksMenuPopup),
|
|
menupopup:not([placespopup="true"]) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin WinNativeMenu() {
|
|
@media not (-moz-windows-non-native-menus) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin WinNonNativeMenu() {
|
|
@media (-moz-windows-non-native-menus) {
|
|
@content;
|
|
}
|
|
}
|