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') 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') 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 From 8df2811d4981f5b3cc9291ac1c8c7fddb41427c6 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 21 Nov 2012 23:29:20 -0800 Subject: Simpler footer for docs * Remove back to top link (ya'll are lazy :P) * Center text * Decrease vertical padding --- docs/assets/css/docs.css | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'docs/assets/css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 119a30528..e6e7a7c99 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -299,7 +299,8 @@ only screen and ( -o-min-device-pixel-ratio: 2/1) { -------------------------------------------------- */ .footer { - padding: 70px 0; + text-align: center; + padding: 30px 0; margin-top: 70px; border-top: 1px solid #e5e5e5; background-color: #f5f5f5; @@ -1024,8 +1025,4 @@ form.bs-docs-example { padding-top: 20px; padding-bottom: 20px; } - /* Unfloat the back to top in footer to prevent odd text wrapping */ - .footer .pull-right { - float: none; - } } -- cgit v1.2.3 From e0d0190803398ce12b2fe88e31e45993b35cf17e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 22 Nov 2012 12:26:54 -0800 Subject: fix image sizes on homepage --- docs/assets/css/docs.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/assets/css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index e6e7a7c99..ff0ea557b 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -288,9 +288,10 @@ only screen and ( -o-min-device-pixel-ratio: 2/1) { line-height: 1.25; color: #999; } -.marketing img { +.marketing-img { display: block; margin: 0 auto 30px; + max-height: 145px; } -- cgit v1.2.3