aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2011-09-09 20:48:45 -0700
committerMark Otto <[email protected]>2011-09-09 20:48:45 -0700
commita40690a17c1a72fe2364518a62962d6bb5616373 (patch)
tree4ad2f8c3256f42856ac67026154a52c5c24e79a0
parent43b01d1b80764a92ded6b47269433e2ecfd1919b (diff)
downloadbootstrap-a40690a17c1a72fe2364518a62962d6bb5616373.tar.xz
bootstrap-a40690a17c1a72fe2364518a62962d6bb5616373.zip
fix the grid before 1.3.0 drops soon
-rw-r--r--bootstrap-1.2.0.css4
-rw-r--r--bootstrap-1.2.0.min.css2
-rw-r--r--lib/scaffolding.less2
3 files changed, 4 insertions, 4 deletions
diff --git a/bootstrap-1.2.0.css b/bootstrap-1.2.0.css
index b7fe65e78..b0ecc5743 100644
--- a/bootstrap-1.2.0.css
+++ b/bootstrap-1.2.0.css
@@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
- * Date: Fri Sep 2 15:07:03 PDT 2011
+ * Date: Fri Sep 9 20:48:32 PDT 2011
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
@@ -279,7 +279,7 @@ textarea {
.row:after {
clear: both;
}
-.row [class^="span"] {
+.row [class*="span"] {
display: inline;
float: left;
margin-left: 20px;
diff --git a/bootstrap-1.2.0.min.css b/bootstrap-1.2.0.min.css
index 95b54405b..f423a5a95 100644
--- a/bootstrap-1.2.0.min.css
+++ b/bootstrap-1.2.0.min.css
@@ -30,7 +30,7 @@ textarea{overflow:auto;vertical-align:top;}
.btn.info,.alert-message.info{background-color:#339bb9;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-ms-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(top, #5bc0de, #339bb9);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#339bb9 #339bb9 #22697d;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);}
.row{zoom:1;margin-bottom:18px;margin-left:-20px;}.row:before,.row:after{display:table;content:"";}
.row:after{clear:both;}
-.row [class^="span"]{display:inline;float:left;margin-left:20px;}
+.row [class*="span"]{display:inline;float:left;margin-left:20px;}
.row .span1{width:40px;}
.row .span2{width:100px;}
.row .span3{width:160px;}
diff --git a/lib/scaffolding.less b/lib/scaffolding.less
index 615e6be78..c07686ab3 100644
--- a/lib/scaffolding.less
+++ b/lib/scaffolding.less
@@ -13,7 +13,7 @@
// Find all .span# classes within .row and give them the necessary properties for grid columns (supported by all browsers back to IE7)
// Credit to @dhg for the idea
- [class^="span"] {
+ [class*="span"] {
display: inline;
float: left;
margin-left: @gridGutterWidth;