diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index feabc49413..28dd0b9ff2 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 02ab012c45..3410818d2c 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -124,7 +124,7 @@ a { text-decoration: none; } a:hover { - color: #006699; + color: #005580; text-decoration: underline; } .row { @@ -2601,8 +2601,8 @@ input[type="submit"].btn.btn-small { } .nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret { - border-top-color: #006699; - border-bottom-color: #006699; + border-top-color: #005580; + border-bottom-color: #005580; } .nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret { @@ -3901,7 +3901,7 @@ a.thumbnail:hover { .hero-unit { padding: 60px; margin-bottom: 30px; - background-color: #f5f5f5; + background-color: #eeeeee; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; @@ -3910,12 +3910,14 @@ a.thumbnail:hover { margin-bottom: 0; font-size: 60px; line-height: 1; + color: inherit; letter-spacing: -1px; } .hero-unit p { font-size: 18px; font-weight: 200; line-height: 27px; + color: inherit; } .pull-right { float: right; diff --git a/docs/download.html b/docs/download.html index 44b3b8c03d..858becd719 100644 --- a/docs/download.html +++ b/docs/download.html @@ -227,6 +227,12 @@
+

Scaffolding

+ + + + +

Links

@@ -247,6 +253,13 @@ + +

Sprites

+ + + + +

Grid system

@@ -261,6 +274,7 @@ +

Typography

@@ -268,13 +282,32 @@ + + + + + + + + + + + + + +
-

Forms

- - - - +

Tables

+ + + + + + + + +

Navbar

@@ -288,8 +321,39 @@ + + + + + + + +

Dropdowns

+ + + + + + + +
+

Forms

+ + + + + + + + + + + + + +

Form states & alerts

diff --git a/docs/templates/pages/download.mustache b/docs/templates/pages/download.mustache index 618bb3e1ee..7b549619da 100644 --- a/docs/templates/pages/download.mustache +++ b/docs/templates/pages/download.mustache @@ -151,6 +151,12 @@
+

{{_i}}Scaffolding{{/i}}

+ + + + +

{{_i}}Links{{/i}}

@@ -171,6 +177,13 @@ + +

{{_i}}Sprites{{/i}}

+ + + + +

{{_i}}Grid system{{/i}}

@@ -185,6 +198,7 @@ +

{{_i}}Typography{{/i}}

@@ -192,13 +206,32 @@ + + + + + + + + + + + + + +
-

{{_i}}Forms{{/i}}

- - - - +

{{_i}}Tables{{/i}}

+ + + + + + + + +

{{_i}}Navbar{{/i}}

@@ -212,8 +245,39 @@ + + + + + + + +

{{_i}}Dropdowns{{/i}}

+ + + + + + + +
+

{{_i}}Forms{{/i}}

+ + + + + + + + + + + + + +

{{_i}}Form states & alerts{{/i}}

diff --git a/less/hero-unit.less b/less/hero-unit.less index cba1cc46cf..0ffe82962a 100644 --- a/less/hero-unit.less +++ b/less/hero-unit.less @@ -4,17 +4,19 @@ .hero-unit { padding: 60px; margin-bottom: 30px; - background-color: #f5f5f5; + background-color: @heroUnitBackground; .border-radius(6px); h1 { margin-bottom: 0; font-size: 60px; line-height: 1; + color: @heroUnitHeadingColor; letter-spacing: -1px; } p { font-size: 18px; font-weight: 200; line-height: @baseLineHeight * 1.5; + color: @heroUnitLeadColor; } } diff --git a/less/variables.less b/less/variables.less index fef3ee0ee5..f3ba7122ac 100644 --- a/less/variables.less +++ b/less/variables.less @@ -40,7 +40,7 @@ // Links // ------------------------- @linkColor: #08c; -@linkColorHover: #069; +@linkColorHover: darken(@linkColor, 15%); // Typography @@ -67,7 +67,7 @@ // ------------------------- @btnBackground: @white; @btnBackgroundHighlight: darken(@white, 10%); -@btnBorder: #ccc; +@btnBorder: darken(@white, 20%); @btnPrimaryBackground: @linkColor; @btnPrimaryBackgroundHighlight: spin(@btnPrimaryBackground, 15%); @@ -92,7 +92,6 @@ // ------------------------- @inputBackground: @white; @inputBorder: #ccc; - @inputDisabledBackground: @grayLighter; @@ -153,9 +152,9 @@ // Hero unit // ------------------------- -@heroUnitBackground: #312f2e; -@heroUnitHeadingColor: @white; -@heroUnitLeadColor: @white; +@heroUnitBackground: @grayLighter; +@heroUnitHeadingColor: inherit; +@heroUnitLeadColor: inherit; // Form states and alerts