Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure that arbitrary properties respect important configuration #13353

Merged
merged 3 commits into from Mar 26, 2024

Conversation

RobinMalfait
Copy link
Contributor

@RobinMalfait RobinMalfait commented Mar 25, 2024

This PR fixes an issue where the important configuration was not respected for arbitrary properties.

If you have important: "#app" in your configuration, then we expect the following CSS for an arbitrary property like [color:red]:

#app .\[color\:red\] {
  color: red;
}

But before this fix, the generated CSS looked like this instead:

.\[color\:red\] {
  color: red;
}

Fixes: #13351

CHANGELOG.md Outdated
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Reset letter spacing for form elements ([#13150](https://github.com/tailwindlabs/tailwindcss/pull/13150))
- Fix missing `xx-large` and remove double `x-large` absolute size ([#13324](https://github.com/tailwindlabs/tailwindcss/pull/13324))
- Don't error when encountering nested CSS unless trying to `@apply` a class that uses nesting ([#13325](https://github.com/tailwindlabs/tailwindcss/pull/13325))
- Ensure that arbitrary properties respect the important configuration ([#13353](https://github.com/tailwindlabs/tailwindcss/pull/13353))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd tweak this very slightly to:

Ensure that arbitrary properties respect important configuration

No "the", make important a code tag 👍

@RobinMalfait RobinMalfait changed the title Ensure that arbitrary properties respect the important configuration Ensure that arbitrary properties respect important configuration Mar 26, 2024
@RobinMalfait RobinMalfait merged commit 97607f1 into master Mar 26, 2024
13 checks passed
@RobinMalfait RobinMalfait deleted the fix/issue-13351 branch March 26, 2024 10:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants