aboutsummaryrefslogtreecommitdiff
path: root/less/forms.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-06-04 08:33:42 -0700
committerMark Otto <[email protected]>2012-06-04 08:33:42 -0700
commiteb3a4b8f759299e4157bd32deb6016587f48acb4 (patch)
tree21d328b3ea30714e36fec3b94bf8de45cd4b1b80 /less/forms.less
parentad9bfeef7a27cb470f520798cd806cb310f4e9c8 (diff)
downloadbootstrap-eb3a4b8f759299e4157bd32deb6016587f48acb4.tar.xz
bootstrap-eb3a4b8f759299e4157bd32deb6016587f48acb4.zip
fix placeholder for FF by attaching input and textarea when we call the mixin
Diffstat (limited to 'less/forms.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 1163fe914..56f215d6c 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();
+}