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 3787695 commit 2652532Copy full SHA for 2652532
src/lib/form-field/form-field-input.scss
@@ -89,6 +89,12 @@
89
// happen, however it's possible to do it when clicking on a disabled input (see #13479).
90
@include user-select(none);
91
92
+ &:-ms-input-placeholder {
93
+ // fix IE11 not able to focus programmatically with css style -ms-user-select: none
94
+ // see https://github.com/angular/material2/issues/15093
95
+ -ms-user-select: text;
96
+ }
97
+
98
// Delay the transition until the label has animated about a third of the way through, in
99
// order to prevent the placeholder from overlapping for a split second.
100
transition: color $swift-ease-out-duration $swift-ease-out-duration / 3
0 commit comments