2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
|
2012-09-26 11:59:57 -04:00
|
|
|
// Floats
|
2012-12-19 20:49:20 -05:00
|
|
|
.clearfix {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include clearfix();
|
2012-09-26 11:59:57 -04:00
|
|
|
}
|
2013-09-01 05:20:58 -04:00
|
|
|
.center-block {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include center-block();
|
2013-09-01 05:20:58 -04:00
|
|
|
}
|
2012-01-08 18:38:57 -05:00
|
|
|
.pull-right {
|
2013-07-28 02:05:47 -04:00
|
|
|
float: right !important;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
.pull-left {
|
2013-07-28 02:05:47 -04:00
|
|
|
float: left !important;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
|
2012-09-26 11:59:57 -04:00
|
|
|
|
2014-07-14 11:48:26 -04:00
|
|
|
// Inverse
|
|
|
|
.inverse {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $gray-lighter;
|
|
|
|
background-color: $gray-dark;
|
2014-07-14 11:48:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Spacing
|
|
|
|
.p-a {
|
2014-12-02 17:02:35 -05:00
|
|
|
padding: $spacer;
|
2014-07-14 11:48:26 -04:00
|
|
|
}
|
|
|
|
.p-h {
|
2014-12-02 17:02:35 -05:00
|
|
|
padding-left: $spacer;
|
|
|
|
padding-right: $spacer;
|
2014-07-14 11:48:26 -04:00
|
|
|
}
|
|
|
|
.p-v {
|
2014-12-02 17:02:35 -05:00
|
|
|
padding-top: $spacer;
|
|
|
|
padding-bottom: $spacer;
|
2014-07-14 11:48:26 -04:00
|
|
|
}
|
|
|
|
|
2014-07-14 12:03:21 -04:00
|
|
|
// Positioning
|
|
|
|
.pos-f-t {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2014-12-02 17:02:35 -05:00
|
|
|
z-index: $zindex-navbar-fixed;
|
2014-07-14 12:03:21 -04:00
|
|
|
}
|
|
|
|
|
2014-07-14 11:48:26 -04:00
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
// Toggling content
|
|
|
|
.show {
|
2012-12-20 16:53:38 -05:00
|
|
|
display: block !important;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2012-09-26 11:59:57 -04:00
|
|
|
.text-hide {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include text-hide();
|
2012-09-26 11:59:57 -04:00
|
|
|
}
|
|
|
|
|
2012-07-22 21:28:39 -04:00
|
|
|
|
2013-10-13 22:59:42 -04:00
|
|
|
// Hide from screenreaders and browsers
|
|
|
|
//
|
|
|
|
// Credit: HTML5 Boilerplate
|
|
|
|
.hidden {
|
|
|
|
display: none !important;
|
|
|
|
visibility: hidden !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-20 00:12:52 -04:00
|
|
|
// For Affix plugin
|
2012-07-22 21:28:39 -04:00
|
|
|
.affix {
|
|
|
|
position: fixed;
|
2012-08-20 00:12:52 -04:00
|
|
|
}
|
2014-09-18 22:15:01 -04:00
|
|
|
|
|
|
|
// Alignment
|
|
|
|
.text-left { text-align: left; }
|
|
|
|
.text-right { text-align: right; }
|
|
|
|
.text-center { text-align: center; }
|
|
|
|
.text-justify { text-align: justify; }
|
|
|
|
.text-nowrap { white-space: nowrap; }
|
|
|
|
|
|
|
|
// Transformation
|
|
|
|
.text-lowercase { text-transform: lowercase; }
|
|
|
|
.text-uppercase { text-transform: uppercase; }
|
|
|
|
.text-capitalize { text-transform: capitalize; }
|
|
|
|
|
|
|
|
// Contextual colors
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2014-09-18 22:15:01 -04:00
|
|
|
.text-muted {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $text-muted;
|
2014-09-18 22:15:01 -04:00
|
|
|
}
|
|
|
|
|
2014-12-02 17:02:35 -05:00
|
|
|
@include text-emphasis-variant('.text-primary', $brand-primary);
|
|
|
|
|
|
|
|
@include text-emphasis-variant('.text-success', $state-success-text);
|
|
|
|
|
|
|
|
@include text-emphasis-variant('.text-info', $state-info-text);
|
|
|
|
|
|
|
|
@include text-emphasis-variant('.text-warning', $state-warning-text);
|
|
|
|
|
|
|
|
@include text-emphasis-variant('.text-danger', $state-danger-text);
|
|
|
|
|
2014-09-18 22:15:01 -04:00
|
|
|
// Contextual backgrounds
|
|
|
|
// For now we'll leave these alongside the text classes until v4 when we can
|
|
|
|
// safely shift things around (per SemVer rules).
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2014-09-18 22:15:01 -04:00
|
|
|
.bg-primary {
|
|
|
|
// Given the contrast here, this is the only class to have its color inverted
|
|
|
|
// automatically.
|
|
|
|
color: #fff;
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
|
|
|
|
@include bg-variant('.bg-primary', $brand-primary);
|
|
|
|
|
|
|
|
@include bg-variant('.bg-success', $state-success-bg);
|
|
|
|
|
|
|
|
@include bg-variant('.bg-info', $state-info-bg);
|
|
|
|
|
|
|
|
@include bg-variant('.bg-warning', $state-warning-bg);
|
|
|
|
|
|
|
|
@include bg-variant('.bg-danger', $state-danger-bg);
|