mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-15 15:20:33 -08:00
Clean: SASS - Dark mixin
This commit is contained in:
parent
7a80769986
commit
abfe9027fa
11 changed files with 82 additions and 9 deletions
23
__tests__/option.test.scss
Normal file
23
__tests__/option.test.scss
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
@use 'true' as *;
|
||||
@use "../src/utils/option";
|
||||
|
||||
@include test-module("If exist pref [mx]") {
|
||||
@include test("simple") {
|
||||
@include assert {
|
||||
@include output {
|
||||
@include option.Option("userChrome.tab.photon") {
|
||||
body {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@include expect {
|
||||
@supports -moz-bool-pref("userChrome.tab.photon") {
|
||||
body {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue