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 f4f69c4 commit 3b16648Copy full SHA for 3b16648
src/lib/input/input-container.scss
@@ -15,10 +15,19 @@ md-input-container {
15
}
16
17
.md-input-element {
18
+ // Note that we can't use something like visibility: hidden or
19
+ // display: none, because IE ends up preventing the user from
20
+ // focusing the input altogether.
21
&::placeholder {
- // Note that we can't use something like visibility: hidden or
- // display: none, because IE ends up preventing the user from
- // focusing the input altogether.
22
+ color: transparent;
23
+ }
24
+ &::-moz-placeholder {
25
26
27
+ &::-webkit-input-placeholder {
28
29
30
+ &:-ms-input-placeholder {
31
color: transparent;
32
33
0 commit comments