unignore bower_components
[bootswatch] / bower_components / bootstrap / less / utilities.less
1 //
2 // Utility classes
3 // --------------------------------------------------
4
5
6 // Floats
7 // -------------------------
8
9 .clearfix {
10   .clearfix();
11 }
12 .pull-right {
13   float: right;
14 }
15 .pull-left {
16   float: left;
17 }
18
19
20 // Toggling content
21 // -------------------------
22
23 .hide {
24   display: none !important;
25 }
26 .show {
27   display: block !important;
28 }
29 .invisible {
30   visibility: hidden;
31 }
32 .text-hide {
33   .hide-text();
34 }
35
36
37 // For Affix plugin
38 // -------------------------
39
40 .affix {
41   position: fixed;
42 }