diff --git a/docs/components.html b/docs/components.html index 500a72950..f923cd5e2 100644 --- a/docs/components.html +++ b/docs/components.html @@ -1869,7 +1869,7 @@
Use the well as a simple effect on an element to give it an inset effect.
Use the generic close icon for dismissing content like modals and alerts.
<button class="close">×</button>
iOS devices require an href="#" for click events if you rather use an anchor.
<a class="close" href="#">×</a>+ +
Simple, focused classes for small display or behavior tweaks.
+ +Float an element left
++class="pull-left" ++
+.pull-left {
+ float: left;
+}
+
+
+
+ Float an element right
++class="pull-right" ++
+.pull-right {
+ float: right;
+}
+
+
+ Change an element's color to #999
+class="muted" ++
+.muted {
+ color: #999;
+}
+
+
+ Clear the float on any element
+class="clearfix" ++
+.clearfix {
+ *zoom: 1;
+ &:before,
+ &:after {
+ display: table;
+ content: "";
+ }
+ &:after {
+ clear: both;
+ }
+}
+
+
{{_i}}Use the well as a simple effect on an element to give it an inset effect.{{/i}}
{{_i}}Use the generic close icon for dismissing content like modals and alerts.{{/i}}
<button class="close">×</button>
{{_i}}iOS devices require an href="#" for click events if you rather use an anchor.{{/i}}
<a class="close" href="#">×</a>+ +
{{_i}}Simple, focused classes for small display or behavior tweaks.{{/i}}
+ +{{_i}}Float an element left{{/i}}
++class="pull-left" ++
+.pull-left {
+ float: left;
+}
+
+
+
+ {{_i}}Float an element right{{/i}}
++class="pull-right" ++
+.pull-right {
+ float: right;
+}
+
+
+ {{_i}}Change an element's color to #999{{/i}}
+class="muted" ++
+.muted {
+ color: #999;
+}
+
+
+ {{_i}}Clear the float on any element{{/i}}
+class="clearfix" ++
+.clearfix {
+ *zoom: 1;
+ &:before,
+ &:after {
+ display: table;
+ content: "";
+ }
+ &:after {
+ clear: both;
+ }
+}
+
+