0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-22 16:02:36 +00:00
salesagility_SuiteCRM/themes/default/less/utilities.less
2013-09-23 20:30:44 +01:00

34 lines
392 B
Plaintext
Executable File

// UTILITY CLASSES
// ---------------
// Quick floats
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
.hide {
display: none;
}
.show {
display: block;
}
// Visibility
.invisible {
visibility: hidden;
}
// text direction
.tcenter {
text-align: center !important;
}
.tleft {
text-align: left !important;
}
.tright {
text-align: right !important;
}