aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-11-16 01:16:27 -0800
committerMark Otto <[email protected]>2012-11-16 01:16:27 -0800
commit88c2497368f601e87ba2c1ec3b2e215c1f038975 (patch)
tree9b842a78cf34676a6944b687d6c1af6d7627f3bc /less
parent5702e1be6e9b0b813520c4a0ff2faf427429b720 (diff)
downloadbootstrap-88c2497368f601e87ba2c1ec3b2e215c1f038975.tar.xz
bootstrap-88c2497368f601e87ba2c1ec3b2e215c1f038975.zip
Fixes #5912: User correct selector for form field states.
Previously, we were using a generic label selector, but as this was changed in the main forms awhile back, we need to change it here.
Diffstat (limited to 'less')
-rw-r--r--less/mixins.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 98aa2b8a5..b734bab2d 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -163,7 +163,7 @@
// Mixin for form field states
.formFieldState(@textColor: #555, @borderColor: #ccc, @backgroundColor: #f5f5f5) {
// Set the text color
- > label,
+ .control-label,
.help-block,
.help-inline {
color: @textColor;