0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/less/utilities.less

51 lines
559 B
Plaintext
Raw Normal View History

2012-06-29 06:46:45 +02:00
//
// 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();
}
2012-07-23 03:28:39 +02:00
// For Affix plugin
// -------------------------
2012-07-23 03:28:39 +02:00
.affix {
position: fixed;
}
// Forms
// -------------------------
.control-block-level {
.input-block-level();
}