From b1bdca0fdb1e14ede6904fe652746811d0e4c274 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 31 Aug 2012 23:25:58 -0700 Subject: fixes #4901: attribute typo and reran make --- docs/base-css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index 8b19d1a4d..6240573a9 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -995,7 +995,7 @@ For example, <code><section></code> should be wrapped as inlin

Textarea

-

Form control which supports multiple lines of text. Change row attribute as necessary.

+

Form control which supports multiple lines of text. Change rows attribute as necessary.

-- cgit v1.2.3 From 9d5f9eca85b9d413b4389b744bbf57c20c447c2b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 3 Sep 2012 00:47:48 -0700 Subject: fixes #4909: add color utility classes .text-warning, etc and document them --- docs/base-css.html | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index 6240573a9..dcb181480 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -154,14 +154,14 @@ </p> -

<strong>

+

Bold

For emphasizing a snippet of text with important

The following snippet of text is rendered as bold text.

<strong>rendered as bold text</strong>
-

<em>

+

Italics

For emphasizing a snippet of text with stress

The following snippet of text is rendered as italicized text.

@@ -170,6 +170,23 @@

Heads up! Feel free to use <b> and <i> in HTML5. <b> is meant to highlight words or phrases without conveying additional importance while <i> is mostly for voice, technical terms, etc.

+

Emphasis classes

+

Convey meaning through color with a handful of emphasis utility classes.

+
+

Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.

+

Etiam porta sem malesuada magna mollis euismod.

+

Donec ullamcorper nulla non metus auctor fringilla.

+

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis.

+

Duis mollis, est non commodo luctus, nisi erat porttitor ligula.

+
+
+<p class="muted">Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.</p>
+<p class="text-warning">Etiam porta sem malesuada magna mollis euismod.</p>
+<p class="text-error">Donec ullamcorper nulla non metus auctor fringilla.</p>
+<p class="text-info">Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis.</p>
+<p class="text-success">Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
+
+
-- cgit v1.2.3 From 1f0043a7f5285018a79e464503a60e0e3215aba9 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 4 Sep 2012 09:13:09 -0700 Subject: fixes #4959: docs example --- docs/base-css.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index dcb181480..7504f2469 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -1917,8 +1917,9 @@ For example, <code><section></code> should be wrapped as inlin <label class="control-label" for="inputIcon">Email address</label> <div class="controls"> <div class="input-prepend"> - <span class="add-on"><i class="icon-envelope"></i></span> - <input class="span2" id="inputIcon" type="text"> + <span class="add-on"><i class="icon-envelope"></i></span> + <input class="span2" id="inputIcon" type="text"> + </div> </div> </div> -- cgit v1.2.3