]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
copy edits and tweaks to utility classes to ensure they always are specific enough
authorMark Otto <markotto@twitter.com>
Fri, 13 Jul 2012 21:43:51 +0000 (14:43 -0700)
committerMark Otto <markotto@twitter.com>
Fri, 13 Jul 2012 21:43:51 +0000 (14:43 -0700)
docs/assets/css/bootstrap.css
docs/assets/css/docs.css
docs/extend.html
docs/templates/layout.mustache
less/utilities.less

index 30de241fec7dbd2a23afd7be7f877699c2e79a71..123b2ac33f8125d20120d67937391951fa203c2b 100644 (file)
@@ -5408,11 +5408,11 @@ a.badge:hover {
 }
 
 .hide {
-  display: none;
+  display: none !important;
 }
 
 .show {
-  display: block;
+  display: block !important;
 }
 
 .invisible {
index 0a713d626cfd141e6d0bae94aaef2d285d807594..2c73a78c2e8f9370f0cf3426094326fc5363152f 100644 (file)
@@ -57,6 +57,10 @@ body > .navbar-fixed-top .brand:hover {
 section {
   padding-top: 60px;
 }
+section > .page-header,
+section > .lead {
+  color: #5a5a5a;
+}
 
 /* Separators (hr) */
 .bs-docs-separator {
index 8e9b79b6b0c25ecca2eec4f91ecb4cff89fa4198..df30b679ab064ec16dfe679c3f00f9f25e8f36a2 100644 (file)
@@ -60,7 +60,7 @@
               <li class="">
                 <a href="./javascript.html">Javascript</a>
               </li>
-              <li class="">
+              <li class="active">
                 <a href="./extend.html">Extend</a>
               </li>
             </ul>
index 6ba72e841db4d47e856f5ce0db26ae91c0359f6f..3366179debffc62b6afde5561965d8d0117f90ba 100644 (file)
@@ -72,7 +72,7 @@
               <li class="{{javascript}}">
                 <a href="./javascript.html">{{_i}}Javascript{{/i}}</a>
               </li>
-              <li class="{{less}}">
+              <li class="{{extend}}">
                 <a href="./extend.html">{{_i}}Extend{{/i}}</a>
               </li>
             </ul>
index 35267b305303abe4d69becb6c31bd2bf33857ec7..9d3a405b1c7eff5b9ec460c108effab4f8fc03cc 100644 (file)
 }
 
 // Toggling content
+// Uses `!important` for proper specifity over things like form controls
 .hide {
-  display: none;
+  display: none !important;
 }
 .show {
-  display: block;
+  display: block !important;
 }
 
 // Visibility