mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Fix issues with some pseudo-elements (#11111)
* Fix issues with some pseudo-elements We’ve included pseudo elements for backdrop, marker, placeholder, and selection and they were all “jumpable” before we made changes in v3.3.2. Ideally they wouldn’t be because if they ever eventually have any interactivity that could become a problem. * Update changelog
This commit is contained in:
parent
1867744706
commit
7b4de46d2f
@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
- Nothing yet!
|
||||
### Fixed
|
||||
|
||||
- Fix issue where some pseudo-element variants generated the wrong selector ([#10943](https://github.com/tailwindlabs/tailwindcss/pull/10943), [#10962](https://github.com/tailwindlabs/tailwindcss/pull/10962), [#11111](https://github.com/tailwindlabs/tailwindcss/pull/11111))
|
||||
|
||||
## [3.3.2] - 2023-04-25
|
||||
|
||||
|
||||
@ -26,17 +26,17 @@
|
||||
/** @type {Record<string, PseudoProperty[]>} */
|
||||
let elementProperties = {
|
||||
'::after': ['terminal', 'jumpable'],
|
||||
'::backdrop': ['terminal'],
|
||||
'::backdrop': ['terminal', 'jumpable'],
|
||||
'::before': ['terminal', 'jumpable'],
|
||||
'::cue': ['terminal'],
|
||||
'::cue-region': ['terminal'],
|
||||
'::first-letter': ['terminal', 'jumpable'],
|
||||
'::first-line': ['terminal', 'jumpable'],
|
||||
'::grammar-error': ['terminal'],
|
||||
'::marker': ['terminal'],
|
||||
'::marker': ['terminal', 'jumpable'],
|
||||
'::part': ['terminal', 'actionable'],
|
||||
'::placeholder': ['terminal'],
|
||||
'::selection': ['terminal'],
|
||||
'::placeholder': ['terminal', 'jumpable'],
|
||||
'::selection': ['terminal', 'jumpable'],
|
||||
'::slotted': ['terminal'],
|
||||
'::spelling-error': ['terminal'],
|
||||
'::target-text': ['terminal'],
|
||||
|
||||
@ -352,6 +352,10 @@ crosscheck(() => {
|
||||
${'#app :is(:is(.dark &)::before)'} | ${'#app :is(:is(.dark &))::before'}
|
||||
${'#app :is(.foo::file-selector-button)'} | ${'#app :is(.foo)::file-selector-button'}
|
||||
${'#app :is(.foo::-webkit-progress-bar)'} | ${'#app :is(.foo)::-webkit-progress-bar'}
|
||||
${'.parent::marker li'} | ${'.parent li::marker'}
|
||||
${'.parent::selection li'} | ${'.parent li::selection'}
|
||||
${'.parent::placeholder input'} | ${'.parent input::placeholder'}
|
||||
${'.parent::backdrop dialog'} | ${'.parent dialog::backdrop'}
|
||||
`('should translate "$before" into "$after"', ({ before, after }) => {
|
||||
let result = finalizeSelector('.a', [{ format: before, isArbitraryVariant: false }], {
|
||||
candidate: 'a',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user