From 9d985978a3a5b341911d23c3b7fcf83178ef8e34 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 10 Dec 2012 10:55:42 -0800 Subject: Escape HTML of section element --- 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 08de2aea0..d8f58daa4 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -450,7 +450,7 @@

Inline

Wrap inline snippets of code with <code>.

- For example, <section> should be wrapped as inline. + For example, &lt;section&gt; should be wrapped as inline.
 For example, <code><section></code> should be wrapped as inline.
-- 
cgit v1.2.3


From b6575cc72e144378dd2c1d4e6f23ac80a167c195 Mon Sep 17 00:00:00 2001
From: Mark Otto 
Date: Thu, 20 Dec 2012 13:41:08 -0800
Subject: fix up code snippet

---
 docs/base-css.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'docs/base-css.html')

diff --git a/docs/base-css.html b/docs/base-css.html
index d8f58daa4..7cf9f41b3 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -450,10 +450,10 @@
           

Inline

Wrap inline snippets of code with <code>.

- For example, &lt;section&gt; should be wrapped as inline. + For example, <section> should be wrapped as inline.
-For example, <code><section></code> should be wrapped as inline.
+For example, <code>&lt;section&gt;</code> should be wrapped as inline.
 

Basic block

-- cgit v1.2.3 From a27bf30f0d7a42f356d661db9835710bc8917067 Mon Sep 17 00:00:00 2001 From: Quy Ton Date: Thu, 20 Dec 2012 21:38:53 -0800 Subject: Miscellaneous changes to docs --- docs/base-css.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index 7cf9f41b3..d0fdbeb72 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -527,7 +527,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped

Add any of the following classes to the .table base class.

.table-striped

-

Adds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not available in IE7-IE8).

+

Adds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not available in IE7-8).

@@ -2041,7 +2041,6 @@ For example, <code>&lt;section&gt;</code> should be wrapped
 <div class="btn-toolbar">
   <div class="btn-group">
-
     <a class="btn" href="#"><i class="icon-align-left"></i></a>
     <a class="btn" href="#"><i class="icon-align-center"></i></a>
     <a class="btn" href="#"><i class="icon-align-right"></i></a>
-- 
cgit v1.2.3


From 684c9d8d05d8bdbb886a23780244d34dbea14338 Mon Sep 17 00:00:00 2001
From: Chris Rebert 
Date: Sat, 5 Jan 2013 17:14:22 -0800
Subject: update docs to reflect #5786

---
 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 d0fdbeb72..9cc68382d 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -1572,7 +1572,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped
 

Invalid inputs

-

Style inputs via default browser functionality with :invalid. Specify a type and add the required attribute.

+

Style inputs via default browser functionality with :invalid. Specify a type, add the required attribute if the field is not optional, and (if applicable) specify a pattern.

-- cgit v1.2.3 From b242ff7851e12dbca9b7e22ae1c9a74686ec606d Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 11 Jan 2013 20:51:11 -0800 Subject: Fixes #6553: example fix for validation states --- docs/base-css.html | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index d0fdbeb72..5b6877595 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -1630,6 +1630,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped <span class="help-inline">Something may have gone wrong</span> </div> </div> + <div class="control-group error"> <label class="control-label" for="inputError">Input with error</label> <div class="controls"> @@ -1637,6 +1638,15 @@ For example, <code>&lt;section&gt;</code> should be wrapped <span class="help-inline">Please correct the error</span> </div> </div> + +<div class="control-group info"> + <label class="control-label" for="inputInfo">Input with info</label> + <div class="controls"> + <input type="text" id="inputInfo"> + <span class="help-inline">Username is already taken</span> + </div> +</div> + <div class="control-group success"> <label class="control-label" for="inputSuccess">Input with success</label> <div class="controls"> -- cgit v1.2.3 From f9ee99cf6febd0b59ee95aa1866a3c1eb5c61320 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 14 Jan 2013 00:11:55 -0800 Subject: Upgrade to newest HTML5 shiv, and make it a local dependency rather than CDNing --- 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 d221abc70..f283f962e 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -15,7 +15,7 @@ -- cgit v1.2.3 From 1da1994ba4fa40ed868ab289e910ec9a0d177458 Mon Sep 17 00:00:00 2001 From: Quy Ton Date: Tue, 15 Jan 2013 18:16:44 -0800 Subject: Add text alignment classes info to docs --- docs/base-css.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index f283f962e..3294336b6 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -170,6 +170,19 @@

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.

+

Alignment classes

+

Easily realign text to components with text alignment classes.

+
+

Left aligned text.

+

Center aligned text.

+

Right aligned text.

+
+
+<p class="text-left">Left aligned text.</p>
+<p class="text-center">Center aligned text.</p>
+<p class="text-right">Right aligned text.</p>
+
+

Emphasis classes

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

-- cgit v1.2.3 From d6e3b6b5a449b7929e48916a77aca48d1266f5af Mon Sep 17 00:00:00 2001 From: Fred Sauer Date: Mon, 28 Jan 2013 10:01:59 -0800 Subject: Fix form-actions documentation --- 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 3294336b6..abc5a3a6e 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -1535,7 +1535,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped

Form actions

-

End a form with a group of actions (buttons). When placed within a .form-horizontal, the buttons will automatically indent to line up with the form controls.

+

End a form with a group of actions (buttons). When placed within a .form-actions, the buttons will automatically indent to line up with the form controls.

-- cgit v1.2.3 From db8a78fae6aed5ecced5f20df65cea352af32bb9 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 4 Feb 2013 11:11:04 -0800 Subject: Fixes #6794: incorrect docs mention of th element --- docs/base-css.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index abc5a3a6e..a9943ff96 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -857,8 +857,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped <th>
-- cgit v1.2.3 From accfdaafdbfc172f4d8358bbab820a9862bd8eb9 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 5 Feb 2013 22:28:18 -0800 Subject: Fixes #6808: mention IE lame-itude in docs for invalid inputs --- docs/base-css.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index a9943ff96..4a8f03614 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -1585,6 +1585,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped

Invalid inputs

Style inputs via default browser functionality with :invalid. Specify a type, add the required attribute if the field is not optional, and (if applicable) specify a pattern.

+

This is not available in versions of Internet Explorer 7-9 due to lack of support for CSS pseudo selectors.

-- cgit v1.2.3 From 2fa77bf197050a385e479e1b2e8f61d634499505 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 5 Feb 2013 22:46:45 -0800 Subject: Update link to changelog --- 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 4a8f03614..d1ca3fb8b 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -2178,7 +2178,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped
  • ·
  • Issues
  • ·
  • -
  • Roadmap and changelog
  • +
  • Changelog
  • -- cgit v1.2.3
    - Special table cell for column (or row, depending on scope and placement) labels
    - Must be used within a <thead> + Special table cell for column (or row, depending on scope and placement) labels