diff options
| author | Chris Rebert <[email protected]> | 2013-11-18 14:22:17 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-11-18 14:22:17 -0800 |
| commit | 446f2325a6e4f730939e0fa3e12ba1f5fc53f27f (patch) | |
| tree | 643ce99d86166c653e925c350657d9787c09894e | |
| parent | 84a3aa3e0cdac2d4e3167bfde6459147d1bbca14 (diff) | |
| download | bootstrap-446f2325a6e4f730939e0fa3e12ba1f5fc53f27f.tar.xz bootstrap-446f2325a6e4f730939e0fa3e12ba1f5fc53f27f.zip | |
add explanatory comment Re: #11526
| -rw-r--r-- | less/mixins.less | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/less/mixins.less b/less/mixins.less index 50ccafa7c..e76d8d697 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 } |
