Skip to content

Commit

Permalink
(less) - Firefox placeholder text is faded out and not the full color…
Browse files Browse the repository at this point in the history
…. Adding opacity:1 to it returns it to the proper color

- (this is a re-commit since I messed up my branch last time and failed the travis build)
  • Loading branch information
Erik Flowers committed Nov 18, 2013
1 parent 3d77338 commit 5dc01ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mixins.less
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
// Placeholder text
.placeholder(@color: @input-color-placeholder) {
&:-moz-placeholder { color: @color; } // Firefox 4-18
&::-moz-placeholder { color: @color; } // Firefox 19+
&::-moz-placeholder { color: @color; opacity:1; } // Firefox 19+
&:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
&::-webkit-input-placeholder { color: @color; } // Safari and Chrome
}
Expand Down

0 comments on commit 5dc01ce

Please sign in to comment.