Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove utility that doesn't generate css
Having `decoration-[var(--abc)]` is ambiguous because there are multiple
plugins that have a `decoration` utility name. In order for this to work
you have to prefix it with the type: `decoration-[color:var(--abc)]`
which is already tested in this file.
  • Loading branch information
RobinMalfait committed Nov 29, 2021
commit 052534e32b09e3f9fa32d8559d0729de0e4d80fb
3 changes: 0 additions & 3 deletions tests/arbitrary-values.test.css
Original file line number Diff line number Diff line change
Expand Up @@ -822,9 +822,6 @@
.decoration-\[color\:var\(--color\)\] {
text-decoration-color: var(--color);
}
.decoration-\[var\(--color\)\] {
text-decoration-color: var(--color);
}
.decoration-\[length\:10px\] {
text-decoration-thickness: 10px;
}
Expand Down
1 change: 0 additions & 1 deletion tests/arbitrary-values.test.html
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,6 @@
<div class="decoration-[rgb(123,_123,_123)]"></div>
<div class="decoration-[rgb(123_123_123)]"></div>
<div class="decoration-[color:var(--color)]"></div>
<div class="decoration-[var(--color)]"></div>

<div class="decoration-[length:10px]"></div>

Expand Down