aboutsummaryrefslogtreecommitdiff
path: root/less/grid.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-04-02 19:40:43 -0700
committerMark Otto <[email protected]>2013-04-02 19:40:43 -0700
commiteadfa59d92ad8bd898b2586056fbbf55906e1420 (patch)
treedd23df4f033dfc40a769a76210cb76a3bddb4136 /less/grid.less
parent610eb8fb78952ad3b1b43df2362bcfef9b223a01 (diff)
downloadbootstrap-eadfa59d92ad8bd898b2586056fbbf55906e1420.tar.xz
bootstrap-eadfa59d92ad8bd898b2586056fbbf55906e1420.zip
Add small grid for phones and tablets
Diffstat (limited to 'less/grid.less')
-rw-r--r--less/grid.less12
1 files changed, 10 insertions, 2 deletions
diff --git a/less/grid.less b/less/grid.less
index 1de1b15f6..8162d9940 100644
--- a/less/grid.less
+++ b/less/grid.less
@@ -12,20 +12,28 @@
.row {
.make-row();
}
-[class*="col-span-"] {
+[class*="col-span-"],
+[class*="col-small-"] {
position: relative;
min-height: 1px;
padding-left: (@grid-gutter-width / 2);
padding-right: (@grid-gutter-width / 2);
}
+[class*="col-small-"] {
+ float: left;
+}
+.generate-small-grid-columns(@grid-columns);
+
// Responsive: Tablets and up
@media screen and (min-width: 768px) {
.container {
max-width: 728px;
}
// Generate the grid columns and offsets
- [class*="col-span-"] { float: left; }
+ [class*="col-span-"] {
+ float: left;
+ }
.generate-grid-columns(@grid-columns);
}