SuiteCRM-Core/public/legacy/themes/default/less/utilities.less
2021-03-31 15:37:32 +01:00

34 lines
No EOL
392 B
Text
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;
}