Browse Source

Fixes placeholder on input element

pull/636/head^2
jlukic 10 years ago
parent
commit
61dfb62027
1 changed files with 3 additions and 4 deletions
  1. 7
      src/elements/input.less

7
src/elements/input.less

@ -48,7 +48,6 @@
transition: @transition; transition: @transition;
box-shadow: @boxShadow; box-shadow: @boxShadow;
box-sizing: border-box; box-sizing: border-box;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0); -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
} }
@ -59,10 +58,10 @@
---------------------*/ ---------------------*/
/* browsers require these rules separate */ /* browsers require these rules separate */
.ui.input::-webkit-input-placeholder {
.ui.input input::-webkit-input-placeholder {
color: @placeholderColor; color: @placeholderColor;
} }
.ui.input::-moz-placeholder {
.ui.input input::-moz-placeholder {
color: @placeholderColor; color: @placeholderColor;
} }
@ -308,4 +307,4 @@
font-size: 1.5rem; font-size: 1.5rem;
} }
.loadUIOverrides() !important;
.loadUIOverrides();
Loading…
Cancel
Save