aboutsummaryrefslogtreecommitdiff
path: root/less/grid.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-03-26 17:12:17 -0700
committerMark Otto <[email protected]>2013-03-26 17:12:17 -0700
commitca31f060a839b957ce3a85d3eaaaae09a78bbeb0 (patch)
treef35126669b4914142d6df703633a95e504049811 /less/grid.less
parent1e9be3644c51ec6b808728169a4d535062be2c5f (diff)
downloadbootstrap-ca31f060a839b957ce3a85d3eaaaae09a78bbeb0.tar.xz
bootstrap-ca31f060a839b957ce3a85d3eaaaae09a78bbeb0.zip
New grid classes
Diffstat (limited to 'less/grid.less')
-rw-r--r--less/grid.less6
1 files changed, 3 insertions, 3 deletions
diff --git a/less/grid.less b/less/grid.less
index e9eb52ef2..1de1b15f6 100644
--- a/less/grid.less
+++ b/less/grid.less
@@ -12,7 +12,7 @@
.row {
.make-row();
}
-[class^="span"] {
+[class*="col-span-"] {
position: relative;
min-height: 1px;
padding-left: (@grid-gutter-width / 2);
@@ -25,7 +25,7 @@
max-width: 728px;
}
// Generate the grid columns and offsets
- [class^="span"] { float: left; }
+ [class*="col-span-"] { float: left; }
.generate-grid-columns(@grid-columns);
}
@@ -44,6 +44,6 @@
}
// Reset utility classes due to specificity
-[class*="span"].pull-right {
+[class*="col-span-"].pull-right {
float: right;
}