Skip to content

Commit 1f51ce0

Browse files
committed
ensure two-thirds grid offsets work the same as the others
1 parent ceeeffc commit 1f51ce0

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

bootstrap.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* http://www.apache.org/licenses/LICENSE-2.0
77
*
88
* Designed and built with all the love in the world @twitter by @mdo and @fat.
9-
* Date: Sat Nov 12 00:51:48 PST 2011
9+
* Date: Sat Nov 12 01:04:51 PST 2011
1010
*/
1111
/* Reset.less
1212
* 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).
@@ -380,10 +380,10 @@ a:hover {
380380
.span-two-thirds {
381381
width: 620px;
382382
}
383-
.offset-one-third {
383+
.row > .offset-one-third {
384384
margin-left: 340px;
385385
}
386-
.offset-two-thirds {
386+
.row > .offset-two-thirds {
387387
margin-left: 660px;
388388
}
389389
/* Typography.less

bootstrap.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/scaffolding.less

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,5 +133,7 @@ a {
133133
// Unique column sizes for 16-column grid
134134
.span-one-third { width: 300px; }
135135
.span-two-thirds { width: 620px; }
136-
.offset-one-third { margin-left: 340px; }
137-
.offset-two-thirds { margin-left: 660px; }
136+
.row {
137+
> .offset-one-third { margin-left: 340px; }
138+
> .offset-two-thirds { margin-left: 660px; }
139+
}

0 commit comments

Comments
 (0)