diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 0ab9a33b..bcaa06ed 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -3058,7 +3058,8 @@ button.close { border-radius: 5px; } -.btn-large [class^="icon-"] { +.btn-large [class^="icon-"], +.btn-large [class*=" icon-"] { margin-top: 2px; } @@ -3070,7 +3071,8 @@ button.close { border-radius: 3px; } -.btn-small [class^="icon-"] { +.btn-small [class^="icon-"], +.btn-small [class*=" icon-"] { margin-top: 0; } diff --git a/docs/assets/img/examples/bootstrap-example-sticky-footer.png b/docs/assets/img/examples/bootstrap-example-sticky-footer.png new file mode 100644 index 00000000..c5a1f5f0 Binary files /dev/null and b/docs/assets/img/examples/bootstrap-example-sticky-footer.png differ diff --git a/docs/base-css.html b/docs/base-css.html index 1cf70023..8d0261e5 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -153,14 +153,14 @@
For emphasizing a snippet of text with important
+For emphasizing a snippet of text with a heavier font-weight.
The following snippet of text is rendered as bold text.
<strong>rendered as bold text</strong>
For emphasizing a snippet of text with stress
+For emphasizing a snippet of text with italics.
The following snippet of text is rendered as italicized text.
Add any of the follow classes to the .table base class.
Add any of the following classes to the .table base class.
.table-stripedAdds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not available in IE8).
Cras justo odio, dapibus ac facilisis in, egestas eget quam. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.
+ Sign up today +Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.
+ +Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum.
+ +Maecenas sed diam eget risus varius blandit sit amet non magna.
+Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.
+ +Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum.
+ +Maecenas sed diam eget risus varius blandit sit amet non magna.
+Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.
+Move beyond the base template with a few example layouts. We encourage folks to iterate on these examples and not simply use them as an end result.
Sleek, intuitive, and powerful front-end framework for faster and easier web development.
- +
-<-- Button to trigger modal -->
+<!-- Button to trigger modal -->
<a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>
-<-- Modal -->
+<!-- Modal -->
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache
index e41aa408..1a91ff38 100644
--- a/docs/templates/pages/base-css.mustache
+++ b/docs/templates/pages/base-css.mustache
@@ -89,14 +89,14 @@
{{_i}}For emphasizing a snippet of text with important{{/i}}
+{{_i}}For emphasizing a snippet of text with a heavier font-weight.{{/i}}
The following snippet of text is rendered as bold text.
<strong>rendered as bold text</strong>
{{_i}}For emphasizing a snippet of text with stress{{/i}}
+{{_i}}For emphasizing a snippet of text with italics.{{/i}}
The following snippet of text is rendered as italicized text.
{{_i}}Add any of the follow classes to the .table base class.{{/i}}
{{_i}}Add any of the following classes to the .table base class.{{/i}}
{{_i}}.table-striped{{/i}}{{_i}}Adds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not available in IE8).{{/i}}
{{_i}}Move beyond the base template with a few example layouts. We encourage folks to iterate on these examples and not simply use them as an end result.{{/i}}
{{_i}}Featuring a hero unit for a primary message and three supporting elements.{{/i}}
{{_i}}Uses our new responsive, fluid grid system to create a seamless liquid layout.{{/i}}
@@ -192,28 +192,39 @@
{{_i}}A barebones HTML document with all the Bootstrap CSS and JavaScript included.{{/i}}
{{_i}}Slim, lightweight marketing template for small projects or teams.{{/i}}
{{_i}}Barebones sign in form with custom, larger form controls and a flexible layout.{{/i}}
+
+ {{_i}}Pin a fixed-height footer to the bottom of the user's viewport.{{/i}}
+{{_i}}Sleek, intuitive, and powerful front-end framework for faster and easier web development.{{/i}}
-{{_i}}Download Bootstrap{{/i}}
++ {{_i}}Download Bootstrap{{/i}} +
-<-- Button to trigger modal -->
+<!-- Button to trigger modal -->
<a href="#myModal" role="button" class="btn" data-toggle="modal">{{_i}}Launch demo modal{{/i}}</a>
-<-- Modal -->
+<!-- Modal -->
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
diff --git a/less/buttons.less b/less/buttons.less
index 33441ac7..25bfb9ae 100644
--- a/less/buttons.less
+++ b/less/buttons.less
@@ -72,7 +72,8 @@
font-size: @fontSizeLarge;
.border-radius(@borderRadiusLarge);
}
-.btn-large [class^="icon-"] {
+.btn-large [class^="icon-"],
+.btn-large [class*=" icon-"] {
margin-top: 2px;
}
@@ -82,7 +83,8 @@
font-size: @fontSizeSmall;
.border-radius(@borderRadiusSmall);
}
-.btn-small [class^="icon-"] {
+.btn-small [class^="icon-"],
+.btn-small [class*=" icon-"] {
margin-top: 0;
}