From: Milos Gavrilovic Date: Thu, 10 May 2012 09:25:22 +0000 (+0300) Subject: Update .placeholder() mixin call X-Git-Tag: v2.0.4~1^2~46^2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F3428%2Fhead;p=thirdparty%2Fbootstrap.git Update .placeholder() mixin call In less/mixins.less this mixin is being created with @placeholderText color as default, which is actually set as @placeholderText: @grayLight in less/variables.less so it's redundant to make call like this: .placeholder(@grayLight); --- diff --git a/less/forms.less b/less/forms.less index 7d967c6b3d..61e29b6977 100644 --- a/less/forms.less +++ b/less/forms.less @@ -344,7 +344,7 @@ select:focus:required:invalid { } // Placeholder text gets special styles; can't be bundled together though for some reason -.placeholder(@grayLight); +.placeholder();