]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - themes/default/less/utilities.less
Release 6.5.3
[Github/sugarcrm.git] / themes / default / less / utilities.less
1 // UTILITY CLASSES
2 // ---------------
3
4 // Quick floats
5 .pull-right {
6   float: right;
7 }
8 .pull-left {
9   float: left;
10 }
11
12 // Toggling content
13 .hide {
14   display: none;
15 }
16 .show {
17   display: block;
18 }
19
20 // Visibility
21 .invisible {
22   visibility: hidden;
23 }
24
25 // text direction
26 .tcenter {
27         text-align: center !important;
28 }
29 .tleft {
30         text-align: left !important;
31 }
32 .tright {
33         text-align: right !important;
34 }