|
1 | 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP |
2 | 2 |
|
| 3 | +exports[`indent.css format 1`] = ` |
| 4 | +====================================options===================================== |
| 5 | +parsers: ["css"] |
| 6 | +printWidth: 80 |
| 7 | + | printWidth |
| 8 | +=====================================input====================================== |
| 9 | +:where(input:not([type="button"], [type="reset"], [type="submit"]), textarea, select) { |
| 10 | + /* CSS here */ |
| 11 | +} |
| 12 | +
|
| 13 | +.foooooooooooooooooooo :where(input:not([type="button"], [type="reset"], [type="submit"]), textarea, select) { |
| 14 | + /* CSS here */ |
| 15 | +} |
| 16 | +
|
| 17 | +:is(input:not([type="button"], [type="reset"], [type="submit"]), textarea, select) { |
| 18 | + /* CSS here */ |
| 19 | +} |
| 20 | +
|
| 21 | +.foooooooooooooooooooo :is(input:not([type="button"], [type="reset"], [type="submit"]), textarea, select) { |
| 22 | + /* CSS here */ |
| 23 | +} |
| 24 | +
|
| 25 | +:not(input:not([type="button"], [type="reset"], [type="submit"]), textarea, select) { |
| 26 | + /* CSS here */ |
| 27 | +} |
| 28 | +
|
| 29 | +.foooooooooooooooooooo :not(input:not([type="button"], [type="reset"], [type="submit"]), textarea, select) { |
| 30 | + /* CSS here */ |
| 31 | +} |
| 32 | +
|
| 33 | +=====================================output===================================== |
| 34 | +:where( |
| 35 | + input:not([type="button"], [type="reset"], [type="submit"]), |
| 36 | + textarea, |
| 37 | + select |
| 38 | +) { |
| 39 | + /* CSS here */ |
| 40 | +} |
| 41 | +
|
| 42 | +.foooooooooooooooooooo |
| 43 | + :where( |
| 44 | + input:not([type="button"], [type="reset"], [type="submit"]), |
| 45 | + textarea, |
| 46 | + select |
| 47 | + ) { |
| 48 | + /* CSS here */ |
| 49 | +} |
| 50 | +
|
| 51 | +:is( |
| 52 | + input:not([type="button"], [type="reset"], [type="submit"]), |
| 53 | + textarea, |
| 54 | + select |
| 55 | +) { |
| 56 | + /* CSS here */ |
| 57 | +} |
| 58 | +
|
| 59 | +.foooooooooooooooooooo |
| 60 | + :is( |
| 61 | + input:not([type="button"], [type="reset"], [type="submit"]), |
| 62 | + textarea, |
| 63 | + select |
| 64 | + ) { |
| 65 | + /* CSS here */ |
| 66 | +} |
| 67 | +
|
| 68 | +:not( |
| 69 | + input:not([type="button"], [type="reset"], [type="submit"]), |
| 70 | + textarea, |
| 71 | + select |
| 72 | +) { |
| 73 | + /* CSS here */ |
| 74 | +} |
| 75 | +
|
| 76 | +.foooooooooooooooooooo |
| 77 | + :not( |
| 78 | + input:not([type="button"], [type="reset"], [type="submit"]), |
| 79 | + textarea, |
| 80 | + select |
| 81 | + ) { |
| 82 | + /* CSS here */ |
| 83 | +} |
| 84 | +
|
| 85 | +================================================================================ |
| 86 | +`; |
| 87 | + |
3 | 88 | exports[`is.css format 1`] = ` |
4 | 89 | ====================================options===================================== |
5 | 90 | parsers: ["css"] |
|
0 commit comments