Skip to content

Commit c4ee05b

Browse files
committed
address feedback and fix lint
1 parent dc95467 commit c4ee05b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.stylelintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
"unit-case": "lower",
4646
"unit-no-unknown": true,
47-
"unit-whitelist": ["px", "%", "deg", "ms", "em", "vh", "vw", "vmin"],
47+
"unit-whitelist": ["px", "%", "deg", "s", "ms", "em", "vh", "vw", "vmin"],
4848

4949
"value-list-comma-space-after": "always-single-line",
5050
"value-list-comma-space-before": "never",

src/cdk/text-field/_text-field.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
@keyframes cdk-text-field-autofill-end {/*!*/}
99

1010
.cdk-text-field-autofill-monitored:-webkit-autofill {
11-
// In Chrome 80 we need a 1ms delay, or the animationstart event won't fire.
11+
// Since Chrome 80 we need a 1ms delay, or the animationstart event won't fire.
1212
animation: cdk-text-field-autofill-start 0s 1ms;
1313
}
1414

1515
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
16-
// In Chrome 80 we need a 1ms delay, or the animationstart event won't fire.
16+
// Since Chrome 80 we need a 1ms delay, or the animationstart event won't fire.
1717
animation: cdk-text-field-autofill-end 0s 1ms;
1818
}
1919

@@ -55,7 +55,7 @@ $cdk-text-field-autofill-color-frame-count: 0;
5555
}
5656

5757
&.cdk-text-field-autofill-monitored:-webkit-autofill {
58-
// In Chrome 80 we need a 1ms delay for cdk-text-field-autofill-start, or the animationstart
58+
// Since Chrome 80 we need a 1ms delay for cdk-text-field-autofill-start, or the animationstart
5959
// event won't fire.
6060
animation: cdk-text-field-autofill-start 0s 1ms,
6161
cdk-text-field-autofill-color-#{$cdk-text-field-autofill-color-frame-count} both;

0 commit comments

Comments
 (0)