Radarr/UI/Content/Bootstrap/utilities.less

31 lines
335 B
Plaintext
Raw Normal View History

2013-01-17 00:39:42 +00:00
//
// Utility classes
// --------------------------------------------------
// Quick floats
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
.hide {
display: none;
}
.show {
display: block;
}
// Visibility
.invisible {
visibility: hidden;
}
// For Affix plugin
.affix {
position: fixed;
}