From 2b56ff04614c4617355d16c14784654e841bcf4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Thu, 31 Oct 2013 10:32:23 +0100 Subject: Reduce size of the visibility styles --- docs-assets/css/docs.css | 1 + 1 file changed, 1 insertion(+) (limited to 'docs-assets/css') diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index 7abf6ed09..b0973ae96 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -998,6 +998,7 @@ h1[id] { margin-bottom: 10px; } .responsive-utilities-test span { + display: block; padding: 15px 10px; font-size: 14px; font-weight: bold; -- cgit v1.2.3 From f1869771bc8b8e8a6c7a98385ec58e0bf0d2d98e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 14 Dec 2013 14:18:43 -0800 Subject: Fixes #10505: Document more of LESS vars and mixins --- docs-assets/css/docs.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'docs-assets/css') diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index 15b533dd9..28d93e4e9 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -597,6 +597,35 @@ h1[id] { } +/* + * Color swatches + * + * Color swatches and associated values for our grayscale and brand colors. + */ + +.color-swatches { + margin: 0 -5px; + overflow: hidden; /* clearfix */ +} +.color-swatch { + float: left; + width: 100px; + height: 100px; + margin: 0 5px; + border-radius: 3px; +} +.color-swatches .gray-darker { background-color: #222; } +.color-swatches .gray-dark { background-color: #333; } +.color-swatches .gray { background-color: #555; } +.color-swatches .gray-light { background-color: #999; } +.color-swatches .gray-lighter { background-color: #eee; } +.color-swatches .brand-primary { background-color: #428bca; } +.color-swatches .brand-success { background-color: #5cb85c; } +.color-swatches .brand-warning { background-color: #f0ad4e; } +.color-swatches .brand-danger { background-color: #d9534f; } +.color-swatches .brand-info { background-color: #5bc0de; } + + /* * Team members * -- cgit v1.2.3 From 67b536ea51108c655ac59f1371f11fd8867eaf16 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 14 Dec 2013 21:25:57 -0800 Subject: change class name --- docs-assets/css/docs.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs-assets/css') diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index 79db6f295..901b904ea 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -759,7 +759,7 @@ h1[id] { } /* Typography */ -.bs-example-type .table .info { +.bs-example-type .table .type-info { color: #999; vertical-align: middle; } -- cgit v1.2.3 From 072ccd4ddad1dcf642e27497c5253ce578182719 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 14 Dec 2013 21:40:16 -0800 Subject: Fixes #11572: Add contextual background-color classes to match text classes; move both sets of classes to Helper Classes section of the CSS docs --- docs-assets/css/docs.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'docs-assets/css') diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index 901b904ea..8a9f562e5 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -779,6 +779,11 @@ h1[id] { margin: 0; } +/* Contextual background colors */ +.bs-example-bg-classes p { + padding: 15px; +} + /* Images */ .bs-example > .img-circle, .bs-example > .img-rounded, -- cgit v1.2.3