We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fcf9e7 commit 8dc367cCopy full SHA for 8dc367c
src/lib/form-field/form-field-input.scss
@@ -85,6 +85,10 @@
85
}
86
87
@include input-placeholder {
88
+ // Prevent users from being able to select the placeholder text. Most of the time this can't
89
+ // happen, however it's possible to do it when clicking on a disabled input (see #13479).
90
+ @include user-select(none);
91
+
92
// Delay the transition until the label has animated about a third of the way through, in
93
// order to prevent the placeholder from overlapping for a split second.
94
transition: color $swift-ease-out-duration $swift-ease-out-duration / 3
0 commit comments