1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/static/less/utilities.less Fri Dec 20 22:30:44 2013 +0100
1.3 @@ -0,0 +1,56 @@
1.4 +//
1.5 +// Utility classes
1.6 +// --------------------------------------------------
1.7 +
1.8 +
1.9 +// Floats
1.10 +// -------------------------
1.11 +
1.12 +.clearfix {
1.13 + .clearfix();
1.14 +}
1.15 +.center-block {
1.16 + .center-block();
1.17 +}
1.18 +.pull-right {
1.19 + float: right !important;
1.20 +}
1.21 +.pull-left {
1.22 + float: left !important;
1.23 +}
1.24 +
1.25 +
1.26 +// Toggling content
1.27 +// -------------------------
1.28 +
1.29 +// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
1.30 +.hide {
1.31 + display: none !important;
1.32 +}
1.33 +.show {
1.34 + display: block !important;
1.35 +}
1.36 +.invisible {
1.37 + visibility: hidden;
1.38 +}
1.39 +.text-hide {
1.40 + .text-hide();
1.41 +}
1.42 +
1.43 +
1.44 +// Hide from screenreaders and browsers
1.45 +//
1.46 +// Credit: HTML5 Boilerplate
1.47 +
1.48 +.hidden {
1.49 + display: none !important;
1.50 + visibility: hidden !important;
1.51 +}
1.52 +
1.53 +
1.54 +// For Affix plugin
1.55 +// -------------------------
1.56 +
1.57 +.affix {
1.58 + position: fixed;
1.59 +}