Skip to content

Commit 461d88b

Browse files
committed
Add details-content variant
This matches the new `::details-content` pseudo element.
1 parent 1238d07 commit 461d88b

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

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

+7
Original file line numberDiff line numberDiff line change
@@ -7742,6 +7742,13 @@ exports[`getVariants 1`] = `
77427742
"selectors": [Function],
77437743
"values": [],
77447744
},
7745+
{
7746+
"hasDash": true,
7747+
"isArbitrary": false,
7748+
"name": "details-content",
7749+
"selectors": [Function],
7750+
"values": [],
7751+
},
77457752
{
77467753
"hasDash": true,
77477754
"isArbitrary": false,

packages/tailwindcss/src/variants.test.ts

+14
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,15 @@ test('backdrop', async () => {
100100
expect(await run(['backdrop/foo:flex'])).toEqual('')
101101
})
102102

103+
test('details-content', async () => {
104+
expect(await run(['details-content:flex'])).toMatchInlineSnapshot(`
105+
".details-content\\:flex::details-content {
106+
display: flex;
107+
}"
108+
`)
109+
expect(await run(['details-content/foo:flex'])).toEqual('')
110+
})
111+
103112
test('before', async () => {
104113
expect(await run(['before:flex'])).toMatchInlineSnapshot(`
105114
".before\\:flex:before {
@@ -2099,6 +2108,7 @@ test('variant order', async () => {
20992108
'data-custom:flex',
21002109
'data-[custom=true]:flex',
21012110
'default:flex',
2111+
'details-content:flex',
21022112
'disabled:flex',
21032113
'empty:flex',
21042114
'enabled:flex',
@@ -2185,6 +2195,10 @@ test('variant order', async () => {
21852195
display: flex;
21862196
}
21872197
2198+
.details-content\\:flex::details-content {
2199+
display: flex;
2200+
}
2201+
21882202
.before\\:flex:before, .after\\:flex:after {
21892203
content: var(--tw-content);
21902204
display: flex;

packages/tailwindcss/src/variants.ts

+1
Original file line numberDiff line numberDiff line change
@@ -626,6 +626,7 @@ export function createVariants(theme: Theme): Variants {
626626
staticVariant('file', ['&::file-selector-button'])
627627
staticVariant('placeholder', ['&::placeholder'])
628628
staticVariant('backdrop', ['&::backdrop'])
629+
staticVariant('details-content', ['&::details-content'])
629630

630631
{
631632
function contentProperties() {

0 commit comments

Comments
 (0)