diff options
| author | Mark Otto <[email protected]> | 2014-11-29 15:01:44 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-11-29 15:01:44 -0800 |
| commit | c901287394cd84397cf694a0b2f094f3ea231f66 (patch) | |
| tree | 6a2d4a9c64bb678a49ce226b0a7455c83c09a59c | |
| parent | 55148d32cba2bcd793204df61150c39798d69453 (diff) | |
| download | bootstrap-c901287394cd84397cf694a0b2f094f3ea231f66.tar.xz bootstrap-c901287394cd84397cf694a0b2f094f3ea231f66.zip | |
remove more mentions of theme
| -rw-r--r-- | docs/assets/css/src/docs.css | 12 | ||||
| -rw-r--r-- | docs/assets/js/src/customizer.js | 2 | ||||
| -rw-r--r-- | docs/getting-started/contents.md | 2 |
3 files changed, 4 insertions, 12 deletions
diff --git a/docs/assets/css/src/docs.css b/docs/assets/css/src/docs.css index c7b13f169..0138464c9 100644 --- a/docs/assets/css/src/docs.css +++ b/docs/assets/css/src/docs.css @@ -599,8 +599,7 @@ body { } /* Back to top (hidden on mobile) */ -.back-to-top, -.bs-docs-theme-toggle { +.back-to-top { display: none; padding: 4px 10px; margin-top: 10px; @@ -609,18 +608,13 @@ body { font-weight: 500; color: #999; } -.back-to-top:hover, -.bs-docs-theme-toggle:hover { +.back-to-top:hover { color: #563d7c; text-decoration: none; } -.bs-docs-theme-toggle { - margin-top: 0; -} @media (min-width: 768px) { - .back-to-top, - .bs-docs-theme-toggle { + .back-to-top { display: block; } } diff --git a/docs/assets/js/src/customizer.js b/docs/assets/js/src/customizer.js index 407427a15..979488982 100644 --- a/docs/assets/js/src/customizer.js +++ b/docs/assets/js/src/customizer.js @@ -293,13 +293,11 @@ window.onload = function () { // wait for load in a dumb way because B-0 }) var bsLessSource = preamble + generateLESS('bootstrap.less', lessFileIncludes, vars) - var themeLessSource = preamble + generateLESS('theme.less', lessFileIncludes, vars) var prefixer = autoprefixer({ browsers: __configBridge.autoprefixerBrowsers }) $.when( compileLESS(bsLessSource, 'bootstrap', result), - compileLESS(themeLessSource, 'bootstrap-theme', result) ).done(function () { for (var key in result) { result[key] = prefixer.process(result[key]).css diff --git a/docs/getting-started/contents.md b/docs/getting-started/contents.md index 761998aae..6e267470f 100644 --- a/docs/getting-started/contents.md +++ b/docs/getting-started/contents.md @@ -26,7 +26,7 @@ bootstrap/ └── bootstrap.min.js {% endhighlight %} -This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (1bootstrap.min.*1). Also included is the optional Bootstrap theme. +This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (1bootstrap.min.*1). ### Bootstrap source code |
