From 873f884327db773edf9d1ec361558757c293a81a Mon Sep 17 00:00:00 2001 From: Mike Francis Date: Wed, 31 Jul 2013 09:26:45 +0100 Subject: Added attribute whitespace --- css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css.html') diff --git a/css.html b/css.html index 70ee8c2f0..d17bfcb34 100644 --- a/css.html +++ b/css.html @@ -1592,7 +1592,7 @@ For example, <section> should be wrapped as inline. {% highlight html %} - + -- cgit v1.2.3 From 1583dd55e9f05275ee054884720dce2be8e2f07a Mon Sep 17 00:00:00 2001 From: Jeff Tickle Date: Thu, 1 Aug 2013 11:49:16 -0400 Subject: Added classes for lg-pull, lg-push, lg-offset, sm-pull, sm-push, sm-offset --- css.html | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'css.html') diff --git a/css.html b/css.html index d17bfcb34..bc8836bfb 100644 --- a/css.html +++ b/css.html @@ -299,31 +299,31 @@ base_url: "../"

Offsetting columns

-

Move columns to the right using .col-offset-* classes. These classes increase the left margin of a column by * columns. For example, .col-offset-4 moves .col-lg-4 over four columns.

+

Move columns to the right using .col-lg-offset-* classes. These classes increase the left margin of a column by * columns. For example, .col-lg-offset-4 moves .col-lg-4 over four columns.

4
-
4 offset 4
+
4 offset 4
-
3 offset 3
-
3 offset 3
+
3 offset 3
+
3 offset 3
-
6 offset 3
+
6 offset 3
{% highlight html %}
...
-
...
+
...
-
3 offset 3
-
3 offset 3
+
3 offset 3
+
3 offset 3
-
...
+
...
{% endhighlight %} @@ -360,16 +360,16 @@ base_url: "../" {% endhighlight %}

Column ordering

-

Easily change the order of our built-in grid columns with .col-push-* and .col-pull-* modifier classes.

+

Easily change the order of our built-in grid columns with .col-lg-push-* and .col-lg-pull-* modifier classes.

-
9
-
3
+
9
+
3
{% highlight html %}
-
9
-
3
+
9
+
3
{% endhighlight %} -- cgit v1.2.3 From 9546fc9cf004d38f7aa4d2b64e8ab6bc65920718 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 1 Aug 2013 17:05:23 -0700 Subject: fix typo in CSS docs; fixes #8992 "from" => "form" --- css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css.html') diff --git a/css.html b/css.html index d17bfcb34..102ab3811 100644 --- a/css.html +++ b/css.html @@ -1536,7 +1536,7 @@ For example, <section> should be wrapped as inline. {% endhighlight %}

Validation states

-

Bootstrap includes validation styles for error, warning, and success states on from controls. To use, add .has-warning, .has-error, or .has-success to the parent element. Any .control-label, .form-control, and .help-block within that element will receive the validation styles. +

Bootstrap includes validation styles for error, warning, and success states on form controls. To use, add .has-warning, .has-error, or .has-success to the parent element. Any .control-label, .form-control, and .help-block within that element will receive the validation styles.

-- cgit v1.2.3 From cfacd228ebd7f52faa2dd85a20c3d2534094ee5b Mon Sep 17 00:00:00 2001 From: Adam Woodbeck Date: Fri, 2 Aug 2013 16:30:13 -0400 Subject: Added ".col-sm-*" to the grid example per the description above the example. --- css.html | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'css.html') diff --git a/css.html b/css.html index 102ab3811..3cc9c162b 100644 --- a/css.html +++ b/css.html @@ -263,32 +263,32 @@ base_url: "../"

Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.

-
.col-12 .col-lg-8
-
.col-6 .col-lg-4
+
.col-12 .col-sm-8 .col-lg-8
+
.col-6 .col-sm-4 .col-lg-4
-
.col-6 .col-lg-4
-
.col-6 .col-lg-4
-
.col-6 .col-lg-4
+
.col-6 .col-sm-4 .col-lg-4
+
.col-6 .col-sm-4 .col-lg-4
+
.col-6 .col-sm-4 .col-lg-4
-
.col-6 .col-lg-6
-
.col-6 .col-lg-6
+
.col-6 .col-sm-6 .col-lg-6
+
.col-6 .col-sm-6 .col-lg-6
{% highlight html %}
-
.col-12 .col-lg-8
-
.col-6 .col-lg-4
+
.col-12 .col-sm-8 .col-lg-8
+
.col-6 .col-sm-4 .col-lg-4
-
.col-6 .col-lg-4
-
.col-6 .col-lg-4
-
.col-6 .col-lg-4
+
.col-6 .col-sm-4 .col-lg-4
+
.col-6 .col-sm-4 .col-lg-4
+
.col-6 .col-sm-4 .col-lg-4
-
.col-6 .col-lg-6
-
.col-6 .col-lg-6
+
.col-6 .col-sm-6 .col-lg-6
+
.col-6 .col-sm-6 .col-lg-6
{% endhighlight %} -- cgit v1.2.3