From 20eae67147da15a75250a09f0932c0f3f2198b2b Mon Sep 17 00:00:00 2001
From: Milos Gavrilovic <gavra@arvag.net>
Date: Thu, 10 May 2012 12:25:22 +0300
Subject: [PATCH] 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);
---
 less/forms.less | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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();
 
 
 
-- 
GitLab