diff options
| author | Mark Otto <[email protected]> | 2012-06-04 08:33:42 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-06-04 08:33:42 -0700 |
| commit | eb3a4b8f759299e4157bd32deb6016587f48acb4 (patch) | |
| tree | 21d328b3ea30714e36fec3b94bf8de45cd4b1b80 /less/forms.less | |
| parent | ad9bfeef7a27cb470f520798cd806cb310f4e9c8 (diff) | |
| download | bootstrap-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.less | 5 |
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(); +} |
