Mercurial > wikked
diff static/bootstrap/less/utilities.less @ 149:d29e2f337b00
Updated to Bootstrap 3.0.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 12 Dec 2013 21:54:04 -0800 |
parents | 130eccd396d8 |
children |
line wrap: on
line diff
--- a/static/bootstrap/less/utilities.less Wed Dec 11 21:51:51 2013 -0800 +++ b/static/bootstrap/less/utilities.less Thu Dec 12 21:54:04 2013 -0800 @@ -3,28 +3,54 @@ // -------------------------------------------------- -// Quick floats +// Floats +// ------------------------- + +.clearfix { + .clearfix(); +} +.center-block { + .center-block(); +} .pull-right { - float: right; + float: right !important; } .pull-left { - float: left; + float: left !important; } + // Toggling content +// ------------------------- + +// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 .hide { - display: none; + display: none !important; } .show { - display: block; + display: block !important; } - -// Visibility .invisible { visibility: hidden; } +.text-hide { + .text-hide(); +} + + +// Hide from screenreaders and browsers +// +// Credit: HTML5 Boilerplate + +.hidden { + display: none !important; + visibility: hidden !important; +} + // For Affix plugin +// ------------------------- + .affix { position: fixed; }