twbs--bootstrap/less/utilities.less

43 lines
488 B
Plaintext
Raw Normal View History

2012-06-29 00:46:45 -04:00
//
// Utility classes
// --------------------------------------------------
// Floats
// -------------------------
.clearfix {
.clearfix();
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
// -------------------------
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
.hide-text();
}
2012-07-22 21:28:39 -04:00
// For Affix plugin
// -------------------------
2012-07-22 21:28:39 -04:00
.affix {
position: fixed;
}