From eba9b4de6c5d2dfe49ba6d2484307b1d6542620a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 21 Jun 2013 11:56:47 -0700 Subject: Reset padding on homepage links --- docs/assets/css/docs.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index e47805d37..defa02fb0 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -81,7 +81,9 @@ body { /* Textual links */ .bs-masthead-links { - margin: 20px 0; + margin-top: 20px; + margin-bottom: 20px; + padding-left: 0; list-style: none; } .bs-masthead-links li { -- cgit v1.2.3 From 5af22ab89ff5997ef03366d332b91bddea710323 Mon Sep 17 00:00:00 2001 From: Luis Hdez Date: Sun, 23 Jun 2013 23:15:32 +0200 Subject: Fix overlap sidebar for Tablets and up in docs --- docs/assets/css/docs.css | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index defa02fb0..cef5f3334 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -713,13 +713,6 @@ input.focused { /* Tablets and up */ @media screen and (min-width: 768px) { - /* Reaffix the fixed sidebar */ - .bs-sidebar.affix { - position: fixed; /* Undo the static from mobile-first approach */ - top: 50px; - width: 160px; - } - /* Back to top link */ .bs-top { display: block; /* Unhide */ @@ -781,6 +774,8 @@ input.focused { /* Widen the fixed sidebar */ .bs-sidebar.affix { + position: fixed; /* Undo the static from mobile-first approach */ + top: 50px; width: 213px; } -- cgit v1.2.3 From f00c885d4ce1c36755aee64ee517b0dbb3ab52b3 Mon Sep 17 00:00:00 2001 From: Julian Thilo Date: Tue, 25 Jun 2013 23:12:36 +0200 Subject: Docs: create new callout classes --- docs/assets/css/docs.css | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index cef5f3334..76d64adf4 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -223,11 +223,10 @@ body { /* Side notes for calling out things -------------------------------------------------- */ +/* Base styles (regardless of theme) */ .bs-callout { margin: 20px 0; padding: 15px 30px 15px 15px; - background-color: #fcf2f2; - border-left: 5px solid #df7c7b; } .bs-callout h4 { margin-top: 0; @@ -240,6 +239,20 @@ body { background-color: #fff; } +/* Themes for different contexts */ +.bs-callout-danger { + background-color: #fcf2f2; + border-left: 5px solid #df7c7b; +} +.bs-callout-warning { + background-color: #fefbed; + border-left: 5px solid #f5d659; +} +.bs-callout-info { + background-color: #daecf9; + border-left: 5px solid #55a9e1; +} + /* Special grid styles -- cgit v1.2.3 From b4e0e4fee65fb50f7981d28bb875083e0da1a303 Mon Sep 17 00:00:00 2001 From: Julian Thilo Date: Wed, 26 Jun 2013 15:59:33 +0200 Subject: Adjust info callout, add callouts to docs * Adjust the background-color of bs-callout-info to match danger and warning in tone * Convert all the callouts * Change some callouts to info/warning * Add new callout --- docs/assets/css/docs.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 76d64adf4..30b0f02e7 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -249,7 +249,7 @@ body { border-left: 5px solid #f5d659; } .bs-callout-info { - background-color: #daecf9; + background-color: #f0f7fd; border-left: 5px solid #55a9e1; } -- cgit v1.2.3 From 8cd5d0be71f51a857848b6c28b3f97dbbb838dee Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 27 Jun 2013 19:22:11 -0700 Subject: add docs callout for glyphicons on homepage and CSS page --- docs/assets/css/docs.css | 1 - 1 file changed, 1 deletion(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index cef5f3334..8eeaea3b7 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -95,7 +95,6 @@ body { } - /* Customize and Download button -------------------------------------------------- */ -- cgit v1.2.3 From 8e6d5be8e495dfcf8e2f46d2f40e6ff82e0eb987 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 27 Jun 2013 23:26:04 -0700 Subject: update close button example display --- docs/assets/css/docs.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 8eeaea3b7..f07654a98 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -312,7 +312,7 @@ body { .bs-example > .well:last-child { margin-bottom: 0; } -.bs-example > .close { +.bs-example > p > .close { float: none; } -- cgit v1.2.3 From 08b3515fd7dfa76cdbb92d52a15d6797f3a1c4ed Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 1 Jul 2013 19:42:26 -0700 Subject: fixes #8345: use inline-block on .img-responsive --- docs/assets/css/docs.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index f07654a98..31047b5d7 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -602,6 +602,7 @@ body { } .footer-links { margin: 10px 0; + padding-left: 0; } .footer-links li { display: inline; @@ -617,7 +618,8 @@ body { } .bs-social-buttons { display: inline-block; - margin: 0; + margin-bottom: 0; + padding-left: 0; list-style: none; } .bs-social-buttons li { -- cgit v1.2.3 From 95655e72754b9450d04108593f60647cf2e2241c Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 5 Jul 2013 14:27:54 -0500 Subject: Remove more Glyphicons --- docs/assets/css/docs.css | 37 ------------------------------------- 1 file changed, 37 deletions(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 31047b5d7..a6d106989 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -479,43 +479,6 @@ body { -/* Icons --------------------------------------------------- */ - -.the-icons { - padding-bottom: 1px; - margin-left: 0; - list-style: none; - margin-bottom: 20px; - overflow: hidden; -} -.the-icons li { - float: left; - width: 100px; - height: 110px; - padding: 10px; - border: 1px solid #ddd; - font-size: 12px; - line-height: 1.25; - text-align: center; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - margin: 0 -1px -1px 0; -} -.the-icons .glyphicon { - display: block; - margin: 5px auto; - vertical-align: middle; - margin-right: 3px; - font-size: 24px; -} -.the-icons li:hover { - background-color: rgba(255,0,0,.1); -} - - - /* Responsive docs -------------------------------------------------- */ -- cgit v1.2.3