0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-10 03:46:13 +01:00
Bootstrap/less/utilities.less

43 lines
510 B
Plaintext
Raw Normal View History

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