aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-09-04 09:09:22 -0700
committerMark Otto <[email protected]>2013-09-04 09:09:22 -0700
commitd8dc805f9b2b89ee48eb0f00337c6c37a6434117 (patch)
tree35f842ef77a3709b7ab13db8c86cc3e63239b938
parent34f148714623ad917e59a97c5660ec4c13630d5d (diff)
parent5a6fac2d8438be95623dfb7b960f806f461531df (diff)
downloadbootstrap-d8dc805f9b2b89ee48eb0f00337c6c37a6434117.tar.xz
bootstrap-d8dc805f9b2b89ee48eb0f00337c6c37a6434117.zip
Merge branch 'master' of github.com:twbs/bootstrap
-rw-r--r--css.html4
-rw-r--r--less/mixins.less2
2 files changed, 3 insertions, 3 deletions
diff --git a/css.html b/css.html
index 0e11346be..64540ad61 100644
--- a/css.html
+++ b/css.html
@@ -239,7 +239,7 @@ base_url: "../"
<p>Don't want your columns to simply stack in smaller devices? Use the extra small and medium device grid classes by adding <code>.col-xs-*</code> <code>.col-md-*</code> to your columns. See the example below for a better idea of how it all works.</p>
<div class="bs-docs-grid">
<div class="row show-grid">
- <div class="col-xs-12 col-md-8">.col-xs-12 col-md-8</div>
+ <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
</div>
<div class="row show-grid">
@@ -255,7 +255,7 @@ base_url: "../"
{% highlight html %}
<!-- Stack the columns on mobile by making one full-width and the other half-width -->
<div class="row">
- <div class="col-xs-12 col-md-8">.col-xs-12 col-md-8</div>
+ <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
</div>
diff --git a/less/mixins.less b/less/mixins.less
index f956361fd..7cc364c63 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -618,7 +618,7 @@
}
}
-// Generate the large column offsets
+// Generate the medium column offsets
.make-md-column-offset(@columns) {
@media (min-width: @screen-md-min) {
margin-left: percentage((@columns / @grid-columns));