From 88c2497368f601e87ba2c1ec3b2e215c1f038975 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 16 Nov 2012 01:16:27 -0800 Subject: 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. --- docs/assets/css/bootstrap.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index d3490f856..b051c77cc 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1432,7 +1432,7 @@ input[type="checkbox"][readonly] { background-color: transparent; } -.control-group.warning > label, +.control-group.warning .control-label, .control-group.warning .help-block, .control-group.warning .help-inline { color: #c09853; @@ -1471,7 +1471,7 @@ input[type="checkbox"][readonly] { border-color: #c09853; } -.control-group.error > label, +.control-group.error .control-label, .control-group.error .help-block, .control-group.error .help-inline { color: #b94a48; @@ -1510,7 +1510,7 @@ input[type="checkbox"][readonly] { border-color: #b94a48; } -.control-group.success > label, +.control-group.success .control-label, .control-group.success .help-block, .control-group.success .help-inline { color: #468847; @@ -1549,7 +1549,7 @@ input[type="checkbox"][readonly] { border-color: #468847; } -.control-group.info > label, +.control-group.info .control-label, .control-group.info .help-block, .control-group.info .help-inline { color: #3a87ad; -- cgit v1.2.3 From a367fd4938a50c99cb8e45e048a20d0a6459a786 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 16 Nov 2012 01:19:15 -0800 Subject: Fixes #5925: Adjust top margin of input group in navbar --- docs/assets/css/bootstrap.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index b051c77cc..2da34b4ad 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4384,7 +4384,7 @@ input[type="submit"].btn.btn-mini { .navbar-form .input-append, .navbar-form .input-prepend { - margin-top: 6px; + margin-top: 5px; white-space: nowrap; } -- cgit v1.2.3