From: Erik Flowers Date: Mon, 18 Nov 2013 18:58:14 +0000 (-0700) Subject: - Firefox placeholder text is faded out and not the full color. Adding opacity:1... X-Git-Tag: v3.0.3~16^2~16^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50578dda6072f104921ef1563d2928e5463f64cb;p=thirdparty%2Fbootstrap.git - Firefox placeholder text is faded out and not the full color. 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) --- diff --git a/less/mixins.less b/less/mixins.less index 3d24e668a8..50ccafa7c0 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -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 }