Skip to content

Commit 9e69a2b

Browse files
committed
add scripting variants
1 parent a8c54ac commit 9e69a2b

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

packages/tailwindcss/src/__snapshots__/intellisense.test.ts.snap

+16
Original file line numberDiff line numberDiff line change
@@ -7592,6 +7592,8 @@ exports[`getVariants 1`] = `
75927592
"dark",
75937593
"print",
75947594
"forced-colors",
7595+
"noscript",
7596+
"scripting",
75957597
],
75967598
},
75977599
{
@@ -8282,5 +8284,19 @@ exports[`getVariants 1`] = `
82828284
"selectors": [Function],
82838285
"values": [],
82848286
},
8287+
{
8288+
"hasDash": true,
8289+
"isArbitrary": false,
8290+
"name": "noscript",
8291+
"selectors": [Function],
8292+
"values": [],
8293+
},
8294+
{
8295+
"hasDash": true,
8296+
"isArbitrary": false,
8297+
"name": "scripting",
8298+
"selectors": [Function],
8299+
"values": [],
8300+
},
82858301
]
82868302
`;

packages/tailwindcss/src/variants.test.ts

+20
Original file line numberDiff line numberDiff line change
@@ -1936,6 +1936,26 @@ test('forced-colors', async () => {
19361936
expect(await run(['forced-colors/foo:flex'])).toEqual('')
19371937
})
19381938

1939+
test('noscript', async () => {
1940+
expect(await run(['noscript:flex'])).toMatchInlineSnapshot(`
1941+
"@media (scripting: none) {
1942+
.noscript\\:flex {
1943+
display: flex;
1944+
}
1945+
}"
1946+
`)
1947+
})
1948+
1949+
test('scripting', async () => {
1950+
expect(await run(['scripting:flex'])).toMatchInlineSnapshot(`
1951+
"@media (scripting: enabled) {
1952+
.scripting\\:flex {
1953+
display: flex;
1954+
}
1955+
}"
1956+
`)
1957+
})
1958+
19391959
test('nth', async () => {
19401960
expect(
19411961
await run([

packages/tailwindcss/src/variants.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1134,6 +1134,9 @@ export function createVariants(theme: Theme): Variants {
11341134

11351135
staticVariant('forced-colors', ['@media (forced-colors: active)'])
11361136

1137+
staticVariant('noscript', ['@media (scripting: none)'])
1138+
staticVariant('scripting', ['@media (scripting: enabled)'])
1139+
11371140
return variants
11381141
}
11391142

0 commit comments

Comments
 (0)