Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-06-04 19:33:42 +0400
committerMark Otto <markotto@twitter.com>2012-06-04 19:33:42 +0400
commiteb3a4b8f759299e4157bd32deb6016587f48acb4 (patch)
tree21d328b3ea30714e36fec3b94bf8de45cd4b1b80 /less
parentad9bfeef7a27cb470f520798cd806cb310f4e9c8 (diff)
fix placeholder for FF by attaching input and textarea when we call the mixin
Diffstat (limited to 'less')
-rw-r--r--less/forms.less5
1 files changed, 4 insertions, 1 deletions
diff --git a/less/forms.less b/less/forms.less
index 1163fe9140..56f215d6cb 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -343,7 +343,10 @@ select:focus:required:invalid {
}
// Placeholder text gets special styles; can't be bundled together though for some reason
-.placeholder();
+input,
+textarea {
+ .placeholder();
+}