twbs--bootstrap/less/utilities.less

51 lines
553 B
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Utility classes
// --------------------------------------------------
// Floats
// -------------------------
.clear {
.clearfix();
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
// -------------------------
.hide {
display: none;
}
.show {
display: block;
}
.invisible {
visibility: hidden;
}
.text-hide {
.hide-text();
}
2012-07-23 01:28:39 +00:00
// For Affix plugin
// -------------------------
2012-07-23 01:28:39 +00:00
.affix {
position: fixed;
}
// Forms
// -------------------------
.control-block-level {
.input-block-level();
}