Skip to content

Commit 164954d

Browse files
committed
add scripting variants
1 parent a8c54ac commit 164954d

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

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

+14
Original file line numberDiff line numberDiff line change
@@ -8282,5 +8282,19 @@ exports[`getVariants 1`] = `
82828282
"selectors": [Function],
82838283
"values": [],
82848284
},
8285+
{
8286+
"hasDash": true,
8287+
"isArbitrary": false,
8288+
"name": "noscript",
8289+
"selectors": [Function],
8290+
"values": [],
8291+
},
8292+
{
8293+
"hasDash": true,
8294+
"isArbitrary": false,
8295+
"name": "scripting",
8296+
"selectors": [Function],
8297+
"values": [],
8298+
},
82858299
]
82868300
`;

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', () => {
1940+
expect(run(['noscript:flex'])).toMatchInlineSnapshot(`
1941+
"@media (scripting: none) {
1942+
.noscript\\:flex {
1943+
display: flex;
1944+
}
1945+
}"
1946+
`)
1947+
})
1948+
1949+
test('scripting', () => {
1950+
expect(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)