From 45b59f4307da4c343c605abe41b4909ba632abf1 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 28 Oct 2014 22:57:16 -0700 Subject: Reverts #14848, the overflow scrolling in the docs sidebar /cc @hnrch02 --- docs/assets/css/src/docs.css | 2 -- 1 file changed, 2 deletions(-) (limited to 'docs/assets/css/src/docs.css') diff --git a/docs/assets/css/src/docs.css b/docs/assets/css/src/docs.css index 431ee905f..57a3fc0f8 100644 --- a/docs/assets/css/src/docs.css +++ b/docs/assets/css/src/docs.css @@ -638,8 +638,6 @@ body { .bs-docs-sidebar.affix { position: fixed; /* Undo the static from mobile first approach */ top: 20px; - bottom: 20px; - overflow-y: auto; } .bs-docs-sidebar.affix-bottom { position: absolute; /* Undo the static from mobile first approach */ -- cgit v1.2.3 From 069488dea398fa6124602e43ae633fe4781a4837 Mon Sep 17 00:00:00 2001 From: Heinrich Fenkart Date: Mon, 3 Nov 2014 20:17:03 +0100 Subject: Use Jekyll data for Wall of Browser Bugs --- docs/assets/css/src/docs.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'docs/assets/css/src/docs.css') diff --git a/docs/assets/css/src/docs.css b/docs/assets/css/src/docs.css index 57a3fc0f8..976ad8cbd 100644 --- a/docs/assets/css/src/docs.css +++ b/docs/assets/css/src/docs.css @@ -829,6 +829,21 @@ h1[id] { } +/* + * Wall of Browser Bugs + * + * Better display for the responsive table on the Wall of Browser Bugs. + */ + +.bs-docs-browser-bugs td p { + margin-bottom: 0; +} + +.bs-docs-browser-bugs th:first-child { + width: 18%; +} + + /* * Grid examples * -- cgit v1.2.3 From eb74a8cbf363699eb822057650ddff2f36765ec9 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 9 Nov 2014 23:11:28 -0800 Subject: darken primary blue for accessibility contrast on link colors --- docs/assets/css/src/docs.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/assets/css/src/docs.css') diff --git a/docs/assets/css/src/docs.css b/docs/assets/css/src/docs.css index 976ad8cbd..c7b13f169 100644 --- a/docs/assets/css/src/docs.css +++ b/docs/assets/css/src/docs.css @@ -437,7 +437,7 @@ body { color: #333; } .bs-docs-featurette-img:hover { - color: #428bca; + color: #337ab7; text-decoration: none; } .bs-docs-featurette-img img { @@ -771,7 +771,7 @@ h1[id] { background-color: #eee; } .color-swatches .brand-primary { - background-color: #428bca; + background-color: #337ab7; } .color-swatches .brand-success { background-color: #5cb85c; -- cgit v1.2.3