From 7c7c0e6139fd85ce174b869bffd14ccfee5b8d33 Mon Sep 17 00:00:00 2001 From: Zhipeng Liu Date: Wed, 4 Sep 2013 15:45:10 +0800 Subject: [PATCH 1/2] CSS docs - Grid section: two dots are missing before 'col-md-8' Add the two missing docs --- css.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css.html b/css.html index 0e11346bec..64540ad61c 100644 --- a/css.html +++ b/css.html @@ -239,7 +239,7 @@ base_url: "../"

Don't want your columns to simply stack in smaller devices? Use the extra small and medium device grid classes by adding .col-xs-* .col-md-* to your columns. See the example below for a better idea of how it all works.

-
.col-xs-12 col-md-8
+
.col-xs-12 .col-md-8
.col-xs-6 .col-md-4
@@ -255,7 +255,7 @@ base_url: "../" {% highlight html %}
-
.col-xs-12 col-md-8
+
.col-xs-12 .col-md-8
.col-xs-6 .col-md-4
From 12558bb504618429b132a75db99dcd735d2b95a4 Mon Sep 17 00:00:00 2001 From: Liam Date: Wed, 4 Sep 2013 18:59:44 +1000 Subject: [PATCH 2/2] Fixed error in documentation in mixins.less --- less/mixins.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/mixins.less b/less/mixins.less index f956361fd9..7cc364c63c 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));