diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 502139c251..808f3ff19c 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 74ce8db86e..a363a77598 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -324,9 +324,9 @@ h4, h5, h6 { margin: 0; - font-family: ''; - font-weight: normal; - color: ''; + font-family: inherit; + font-weight: bold; + color: inherit; text-rendering: optimizelegibility; } h1 small, @@ -1878,6 +1878,18 @@ table .span24 { border-color: #ddd; border-color: rgba(0, 0, 0, 0.15); } +.well-large { + padding: 24px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.well-small { + padding: 9px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} .fade { -webkit-transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear; diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index d62ce4bebc..26b47ae724 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -63,6 +63,7 @@ hr.soften { .jumbotron h1 { margin-bottom: 9px; font-size: 81px; + font-weight: bold; letter-spacing: -1px; line-height: 1; } diff --git a/docs/components.html b/docs/components.html index a3a389c98f..809f4d40e9 100644 --- a/docs/components.html +++ b/docs/components.html @@ -134,34 +134,34 @@

Here's how the HTML looks for a standard button group built with anchor tag buttons:

- Left - Middle - Right + + +
 <div class="btn-group">
-  <a class="btn" href="#">1</a>
-  <a class="btn" href="#">2</a>
-  <a class="btn" href="#">3</a>
+  <button class="btn">1</button>
+  <button class="btn">2</button>
+  <button class="btn">3</button>
 </div>
 

Toolbar example

Combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex components.

- 1 - 2 - 3 - 4 + + + +
- 5 - 6 - 7 + + +
- 8 +
@@ -198,7 +198,7 @@
       

Use any button to trigger a dropdown menu by placing it within a .btn-group and providing the proper menu markup.

- Action +
- Action +
- Danger +
- Warning +
- Success +
- Info +
- Inverse +