twbs--bootstrap/less/utilities.less

51 lines
559 B
Plaintext

//
// Utility classes
// --------------------------------------------------
// Floats
// -------------------------
.clearfix {
.clear_float();
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
// -------------------------
.hide {
display: none;
}
.show {
display: block;
}
.invisible {
visibility: hidden;
}
.text-hide {
.hide-text();
}
// For Affix plugin
// -------------------------
.affix {
position: fixed;
}
// Forms
// -------------------------
.control-block-level {
.input-block-level();
}