Skip to content

Commit

Permalink
ensure two-thirds grid offsets work the same as the others
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Nov 12, 2011
1 parent ceeeffc commit 1f51ce0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions bootstrap.css
Expand Up @@ -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: Sat Nov 12 00:51:48 PST 2011
* Date: Sat Nov 12 01:04:51 PST 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).
Expand Down Expand Up @@ -380,10 +380,10 @@ a:hover {
.span-two-thirds {
width: 620px;
}
.offset-one-third {
.row > .offset-one-third {
margin-left: 340px;
}
.offset-two-thirds {
.row > .offset-two-thirds {
margin-left: 660px;
}
/* Typography.less
Expand Down
4 changes: 2 additions & 2 deletions bootstrap.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions lib/scaffolding.less
Expand Up @@ -133,5 +133,7 @@ a {
// Unique column sizes for 16-column grid
.span-one-third { width: 300px; }
.span-two-thirds { width: 620px; }
.offset-one-third { margin-left: 340px; }
.offset-two-thirds { margin-left: 660px; }
.row {
> .offset-one-third { margin-left: 340px; }
> .offset-two-thirds { margin-left: 660px; }
}

0 comments on commit 1f51ce0

Please sign in to comment.