diff options
| author | Milos Gavrilovic <[email protected]> | 2012-05-10 12:25:22 +0300 |
|---|---|---|
| committer | Milos Gavrilovic <[email protected]> | 2012-05-10 12:25:22 +0300 |
| commit | 20eae67147da15a75250a09f0932c0f3f2198b2b (patch) | |
| tree | 61b1136a693d75fab751305d538f9d7db4fb331d | |
| parent | ef368f0076523a8d0cd6b411549d7e9af9d1cf98 (diff) | |
| download | bootstrap-20eae67147da15a75250a09f0932c0f3f2198b2b.tar.xz bootstrap-20eae67147da15a75250a09f0932c0f3f2198b2b.zip | |
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);
| -rw-r--r-- | less/forms.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/less/forms.less b/less/forms.less index 7d967c6b3..61e29b697 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(); |
