mirror of
https://github.com/Radarr/Radarr
synced 2024-12-28 10:51:48 +00:00
7093f352fe
backbone app is now fully served from nancy including css,js,html
30 lines
335 B
Text
30 lines
335 B
Text
//
|
|
// 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;
|
|
}
|