twbs--bootstrap/less/utilities.less

57 lines
780 B
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Utility classes
// --------------------------------------------------
// Floats
// -------------------------
.clearfix {
.clearfix();
}
.center-block {
.center-block();
}
.pull-right {
2013-07-28 06:05:47 +00:00
float: right !important;
}
.pull-left {
2013-07-28 06:05:47 +00:00
float: left !important;
}
// Toggling content
// -------------------------
2013-09-23 19:46:57 +00:00
// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
.text-hide();
}
2012-07-23 01:28:39 +00:00
// Hide from screenreaders and browsers
//
// Credit: HTML5 Boilerplate
.hidden {
display: none !important;
visibility: hidden !important;
}
// For Affix plugin
// -------------------------
2012-07-23 01:28:39 +00:00
.affix {
position: fixed;
}