]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
remove more mentions of theme
authorMark Otto <markdotto@gmail.com>
Sat, 29 Nov 2014 23:01:44 +0000 (15:01 -0800)
committerMark Otto <markdotto@gmail.com>
Sat, 29 Nov 2014 23:01:44 +0000 (15:01 -0800)
docs/assets/css/src/docs.css
docs/assets/js/src/customizer.js
docs/getting-started/contents.md

index c7b13f169b070198b66f74ee59281076a9e3a07d..0138464c947783d3d4e06b7605da8220065eb190 100644 (file)
@@ -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;
   }
 }
index 407427a15d2cdf1b3d3a77eec92bed877dab77e4..97948898245fd4ae218353fb1c43a20c78fa0099 100644 (file)
@@ -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
index 761998aae6d87f7f3311bc55638a599e7de0bf41..6e267470f6084cfbe0c8cd0bbed5205cc34b3434 100644 (file)
@@ -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