diff options
| author | Zlatan Vasović <[email protected]> | 2014-02-01 14:20:41 +0100 |
|---|---|---|
| committer | Zlatan Vasović <[email protected]> | 2014-02-01 14:20:41 +0100 |
| commit | 1e09a9d1d7cbfe807d791bb806d1b56d2bd5830a (patch) | |
| tree | 8666b7f2027eefe778638a2043d5203727c642ca | |
| parent | 1409cde7e800ca83fd761f87e5ad8f0d259e38d1 (diff) | |
| download | bootstrap-1e09a9d1d7cbfe807d791bb806d1b56d2bd5830a.tar.xz bootstrap-1e09a9d1d7cbfe807d791bb806d1b56d2bd5830a.zip | |
Remove redundant :-moz-placeholder styles
No need for old Firefox versions support.
| -rw-r--r-- | less/mixins.less | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/less/mixins.less b/less/mixins.less index ae746d83a..5b34ffb61 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -54,8 +54,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; // Firefox 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 |
