Skip to content

Commit 79d7092

Browse files
committed
Merge branch '2.0.3-wip' of github.com:twitter/bootstrap into 2.0.3-wip
2 parents d8aaf50 + fc871a4 commit 79d7092

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

docs/assets/css/bootstrap.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4647,15 +4647,15 @@ a.badge:hover {
46474647
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
46484648
-moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
46494649
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4650+
-webkit-box-sizing: border-box;
4651+
-moz-box-sizing: border-box;
4652+
-ms-box-sizing: border-box;
4653+
box-sizing: border-box;
46504654
-webkit-transition: width 0.6s ease;
46514655
-moz-transition: width 0.6s ease;
46524656
-ms-transition: width 0.6s ease;
46534657
-o-transition: width 0.6s ease;
46544658
transition: width 0.6s ease;
4655-
-webkit-box-sizing: border-box;
4656-
-moz-box-sizing: border-box;
4657-
-ms-box-sizing: border-box;
4658-
box-sizing: border-box;
46594659
}
46604660

46614661
.progress-striped .bar {

docs/assets/js/application.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137

138138
$.ajax({
139139
type: 'POST'
140-
, url: 'http://bootstrap.herokuapp.com'
140+
, url: /\?dev/.test(window.location) ? 'http://localhost:3000' : 'http://bootstrap.herokuapp.com'
141141
, dataType: 'jsonpi'
142142
, params: {
143143
js: js
@@ -147,7 +147,6 @@
147147
}
148148
})
149149
})
150-
151150
})
152151

153152
// Modified from the original jsonpi https://github.com/benvinegar/jquery-jsonpi

docs/download.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h3>Scaffolding</h3>
108108
<h3>Base CSS</h3>
109109
<label class="checkbox"><input checked="checked" type="checkbox" value="type.less"> Headings, body, etc</label>
110110
<label class="checkbox"><input checked="checked" type="checkbox" value="code.less"> Code and pre</label>
111-
<label class="checkbox"><input checked="checked" type="checkbox" value="labels.less"> Labels and badges</label>
111+
<label class="checkbox"><input checked="checked" type="checkbox" value="labels-badges.less"> Labels and badges</label>
112112
<label class="checkbox"><input checked="checked" type="checkbox" value="tables.less"> Tables</label>
113113
<label class="checkbox"><input checked="checked" type="checkbox" value="forms.less"> Forms</label>
114114
<label class="checkbox"><input checked="checked" type="checkbox" value="buttons.less"> Buttons</label>

docs/templates/pages/download.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<h3>{{_i}}Base CSS{{/i}}</h3>
3232
<label class="checkbox"><input checked="checked" type="checkbox" value="type.less"> {{_i}}Headings, body, etc{{/i}}</label>
3333
<label class="checkbox"><input checked="checked" type="checkbox" value="code.less"> {{_i}}Code and pre{{/i}}</label>
34-
<label class="checkbox"><input checked="checked" type="checkbox" value="labels.less"> {{_i}}Labels and badges{{/i}}</label>
34+
<label class="checkbox"><input checked="checked" type="checkbox" value="labels-badges.less"> {{_i}}Labels and badges{{/i}}</label>
3535
<label class="checkbox"><input checked="checked" type="checkbox" value="tables.less"> {{_i}}Tables{{/i}}</label>
3636
<label class="checkbox"><input checked="checked" type="checkbox" value="forms.less"> {{_i}}Forms{{/i}}</label>
3737
<label class="checkbox"><input checked="checked" type="checkbox" value="buttons.less"> {{_i}}Buttons{{/i}}</label>

0 commit comments

Comments
 (0)