Skip to content

Commit 90f8eb6

Browse files
committed
Merge branch 'master' of https://github.com/twitter/bootstrap
Conflicts: bootstrap.css
2 parents a6f055e + 270def4 commit 90f8eb6

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

bootstrap.css

Lines changed: 4 additions & 4 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 20:22:29 PST 2011
9+
* Date: Wed Nov 16 00:28:10 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
@@ -1925,7 +1925,7 @@ footer {
19251925
border-color: #0064cd #0064cd #003f81;
19261926
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
19271927
}
1928-
.btn.active, .btn :active {
1928+
.btn.active, .btn:active {
19291929
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
19301930
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
19311931
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);

bootstrap.min.css

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

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ <h2>Default styles</h2>
12371237
<li>
12381238
<label>
12391239
<input type="radio" name="optionsRadios" value="option2" />
1240-
<span>Option two can is something else and selecting it will deselect options 1</span>
1240+
<span>Option two is something else and selecting it will deselect option 1</span>
12411241
</label>
12421242
</li>
12431243
</ul>

lib/patterns.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ footer {
581581

582582
// Active and Disabled states
583583
&.active,
584-
:active {
584+
&:active {
585585
@shadow: inset 0 2px 4px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.05);
586586
.box-shadow(@shadow);
587587
}

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)