Small update to placeholder styling

Firefox 19+ has an opacity set to `::-moz-placeholder`, so it was never *really* `#aaa` to begin with.
This gets rid of the `!important` and the `:hover`, making it a lot more consistent with Chrome.
This commit is contained in:
Johnny 2014-05-09 21:49:11 +10:00
parent be49e96889
commit 196cb1d83d

View File

@ -18,9 +18,9 @@
outline: none;
transition: color .25s, border-color .25s, flex .25s;
}
.field::-moz-placeholder,
.field:hover::-moz-placeholder {
color: #AAA !important;
.field::-moz-placeholder {
color: #AAA;
opacity: 1;
}
.field:hover {
border-color: #999;