Skip to content

Commit 9934174

Browse files
feklereinink
andauthored
Add 'text-decoration-color' to default 'transition' and 'transition-colors' utilities (#6405)
* Add 'text-decoration-color' to default 'transition' and 'transition-colors' utilities * Add 'text-decoration-color' to default 'transition' and 'transition-colors' utilities * Delete tailwind-output-flagged.css * Delete tailwind-output-important.css * Delete tailwind-output-no-color-opacity.css * Delete tailwind-output.css Co-authored-by: Jonathan Reinink <[email protected]>
1 parent 0783a42 commit 9934174

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

stubs/defaultConfig.stub.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -854,8 +854,8 @@ module.exports = {
854854
none: 'none',
855855
all: 'all',
856856
DEFAULT:
857-
'background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter',
858-
colors: 'background-color, border-color, color, fill, stroke',
857+
'background-color, border-color, text-decoration-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter',
858+
colors: 'background-color, border-color, text-decoration-color, color, fill, stroke',
859859
opacity: 'opacity',
860860
shadow: 'box-shadow',
861861
transform: 'transform',

tests/basic-usage.test.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1020,7 +1020,7 @@
10201020
backdrop-filter: none;
10211021
}
10221022
.transition {
1023-
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow,
1023+
transition-property: background-color, border-color, text-decoration-color, color, fill, stroke, opacity, box-shadow,
10241024
transform, filter, backdrop-filter;
10251025
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
10261026
transition-duration: 150ms;

tests/kitchen-sink.test.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ div {
378378
}
379379
@media (prefers-reduced-motion: no-preference) {
380380
.motion-safe\:transition {
381-
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow,
381+
transition-property: background-color, border-color, text-decoration-color, color, fill, stroke, opacity, box-shadow,
382382
transform, filter, backdrop-filter;
383383
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
384384
transition-duration: 150ms;
@@ -389,7 +389,7 @@ div {
389389
}
390390
@media (prefers-reduced-motion: reduce) {
391391
.motion-reduce\:transition {
392-
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow,
392+
transition-property: background-color, border-color, text-decoration-color, color, fill, stroke, opacity, box-shadow,
393393
transform, filter, backdrop-filter;
394394
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
395395
transition-duration: 150ms;
@@ -492,7 +492,7 @@ div {
492492
}
493493
@media (prefers-reduced-motion: no-preference) {
494494
.md\:motion-safe\:hover\:transition:hover {
495-
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow,
495+
transition-property: background-color, border-color, text-decoration-color, color, fill, stroke, opacity, box-shadow,
496496
transform, filter, backdrop-filter;
497497
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
498498
transition-duration: 150ms;

tests/raw-content.test.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@
712712
backdrop-filter: none;
713713
}
714714
.transition {
715-
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow,
715+
transition-property: background-color, border-color, text-decoration-color, color, fill, stroke, opacity, box-shadow,
716716
transform, filter, backdrop-filter;
717717
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
718718
transition-duration: 150ms;

0 commit comments

Comments
 (0)