From: Chris Rebert Date: Mon, 18 Nov 2013 22:22:17 +0000 (-0800) Subject: add explanatory comment Re: #11526 X-Git-Tag: v3.0.3~16^2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=446f2325a6e4f730939e0fa3e12ba1f5fc53f27f;p=thirdparty%2Fbootstrap.git add explanatory comment Re: #11526 --- diff --git a/less/mixins.less b/less/mixins.less index 50ccafa7c0..e76d8d697d 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -55,7 +55,8 @@ // Placeholder text .placeholder(@color: @input-color-placeholder) { &:-moz-placeholder { color: @color; } // Firefox 4-18 - &::-moz-placeholder { color: @color; opacity:1; } // Firefox 19+ + &::-moz-placeholder { color: @color; // Firefox 19+ + opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526 &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+ &::-webkit-input-placeholder { color: @color; } // Safari and Chrome }