]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
remove > in fluid grid selectors, fix double padding issue on fluid layout and example
authorMark Otto <markotto@twitter.com>
Sun, 25 Mar 2012 23:40:51 +0000 (16:40 -0700)
committerMark Otto <markotto@twitter.com>
Sun, 25 Mar 2012 23:41:46 +0000 (16:41 -0700)
docs/assets/bootstrap.zip
docs/assets/css/bootstrap-responsive.css
docs/assets/css/bootstrap.css
less/mixins.less
less/responsive-767px-max.less

index 453230366e5fc28adfecfd188ba1c3b6d9add07c..49bc25fb07cea55837f8ec304f492ed3f5a5df5d 100644 (file)
Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ
index c374fb8e522aaa7af4bfb67629d0c213669457b8..560bd756697ae2fbe9795a66637e6b0e38f73e91 100644 (file)
     margin-left: -20px;
     margin-right: -20px;
   }
+  .container-fluid {
+    padding: 0;
+  }
   .container {
     width: auto;
   }
   .row-fluid:after {
     clear: both;
   }
-  .row-fluid [class*="span"] {
+  .row-fluid [class*="span"] {
     float: left;
     margin-left: 2.762430939%;
   }
-  .row-fluid [class*="span"]:first-child {
+  .row-fluid [class*="span"]:first-child {
     margin-left: 0;
   }
   .row-fluid > .span12 {
   .row-fluid:after {
     clear: both;
   }
-  .row-fluid [class*="span"] {
+  .row-fluid [class*="span"] {
     float: left;
     margin-left: 2.564102564%;
   }
-  .row-fluid [class*="span"]:first-child {
+  .row-fluid [class*="span"]:first-child {
     margin-left: 0;
   }
   .row-fluid > .span12 {
index 355c824151cffa2b2b31d4f0f36413e5697cea08..3bfd6960ef506aa022b1c869aed9cdc3ababed5c 100644 (file)
@@ -253,11 +253,11 @@ a:hover {
 .row-fluid:after {
   clear: both;
 }
-.row-fluid [class*="span"] {
+.row-fluid [class*="span"] {
   float: left;
   margin-left: 2.127659574%;
 }
-.row-fluid [class*="span"]:first-child {
+.row-fluid [class*="span"]:first-child {
   margin-left: 0;
 }
 .row-fluid > .span12 {
index f3774a53340ff8cd30dd028aee1773d7b48a3f83..8e72f23ccebb51fc95b347e10592ad4ba8c81394 100644 (file)
     .row-fluid {
       width: 100%;
       .clearfix();
-      [class*="span"] {
+      [class*="span"] {
         float: left;
         margin-left: @fluidGridGutterWidth;
       }
-      [class*="span"]:first-child {
+      [class*="span"]:first-child {
         margin-left: 0;
       }
 
index bb4a449f8afbb55b5dc353c2f03d93d60bf19940..7a3318a8fe1798642b57065cef1ae83007089503 100644 (file)
     padding-left: 20px;
     padding-right: 20px;
   }
+  // Negative indent the now static "fixed" navbar
   .navbar-fixed-top,
   .navbar-fixed-bottom {
     margin-left: -20px;
     margin-right: -20px;
   }
+  // Remove padding on container given explicit padding set on body
+  .container-fluid {
+    padding: 0;
+  }
 
   // GRID & CONTAINERS
   // -----------------