2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
|
2015-04-18 14:38:47 -04:00
|
|
|
//
|
2012-09-26 11:59:57 -04:00
|
|
|
// Floats
|
2015-04-18 14:38:47 -04:00
|
|
|
//
|
|
|
|
|
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
|
|
|
}
|
2015-04-18 14:38:47 -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
|
|
|
}
|
2014-12-16 15:29:47 -05:00
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
.pull-right {
|
2014-12-16 15:29:47 -05:00
|
|
|
@include pull-right();
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
2015-04-18 14:38:47 -04:00
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
.pull-left {
|
2014-12-16 15:29:47 -05:00
|
|
|
@include pull-left();
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
|
2015-04-18 14:38:47 -04:00
|
|
|
|
|
|
|
//
|
|
|
|
// Screenreaders
|
|
|
|
//
|
|
|
|
|
2015-03-30 20:36:00 -04:00
|
|
|
.sr-only {
|
|
|
|
@include sr-only();
|
|
|
|
}
|
|
|
|
|
|
|
|
.sr-only-focusable {
|
|
|
|
@include sr-only-focusable();
|
|
|
|
}
|
|
|
|
|
2012-09-26 11:59:57 -04:00
|
|
|
|
2015-04-14 04:01:30 -04:00
|
|
|
//
|
2014-07-14 11:48:26 -04:00
|
|
|
// Spacing
|
2015-04-14 04:01:30 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
.m-a-0 { margin: 0; }
|
|
|
|
.m-t-0 { margin-top: 0; }
|
|
|
|
.m-r-0 { margin-right: 0; }
|
|
|
|
.m-b-0 { margin-bottom: 0; }
|
|
|
|
.m-l-0 { margin-left: 0; }
|
|
|
|
|
2015-04-15 18:30:26 -04:00
|
|
|
.m-a { margin: $spacer; }
|
2015-04-14 04:01:30 -04:00
|
|
|
.m-t { margin-top: $spacer-y; }
|
|
|
|
.m-r { margin-right: $spacer-x }
|
|
|
|
.m-b { margin-bottom: $spacer-y; }
|
|
|
|
.m-l { margin-left: $spacer-x; }
|
|
|
|
.m-x {
|
|
|
|
margin-right: $spacer-x;
|
|
|
|
margin-left: $spacer-x;
|
|
|
|
}
|
|
|
|
.m-y {
|
|
|
|
margin-top: $spacer-y;
|
|
|
|
margin-bottom: $spacer-y;
|
|
|
|
}
|
|
|
|
|
|
|
|
.m-t-md { margin-top: ($spacer-y * 1.5); }
|
|
|
|
.m-r-md { margin-right: ($spacer-y * 1.5); }
|
|
|
|
.m-b-md { margin-bottom: ($spacer-y * 1.5); }
|
|
|
|
.m-l-md { margin-left: ($spacer-y * 1.5); }
|
|
|
|
.m-x-md {
|
|
|
|
margin-right: ($spacer-x * 1.5);
|
|
|
|
margin-left: ($spacer-x * 1.5);
|
|
|
|
}
|
|
|
|
.m-y-md {
|
|
|
|
margin-top: ($spacer-y * 1.5);
|
|
|
|
margin-bottom: ($spacer-y * 1.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.m-t-lg { margin-top: ($spacer-y * 3); }
|
|
|
|
.m-r-lg { margin-right: ($spacer-y * 3); }
|
|
|
|
.m-b-lg { margin-bottom: ($spacer-y * 3); }
|
|
|
|
.m-l-lg { margin-left: ($spacer-y * 3); }
|
|
|
|
.m-x-lg {
|
|
|
|
margin-right: ($spacer-x * 3);
|
|
|
|
margin-left: ($spacer-x * 3);
|
|
|
|
}
|
|
|
|
.m-y-lg {
|
|
|
|
margin-top: ($spacer-y * 3);
|
|
|
|
margin-bottom: ($spacer-y * 3);
|
2014-07-14 11:48:26 -04:00
|
|
|
}
|
2015-04-14 04:01:30 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.p-a-0 { padding: 0; }
|
|
|
|
.p-t-0 { padding-top: 0; }
|
|
|
|
.p-r-0 { padding-right: 0; }
|
|
|
|
.p-b-0 { padding-bottom: 0; }
|
|
|
|
.p-l-0 { padding-left: 0; }
|
|
|
|
|
2015-04-15 18:30:26 -04:00
|
|
|
.p-a { padding: $spacer; }
|
2015-04-14 04:01:30 -04:00
|
|
|
.p-t { padding-top: $spacer-y; }
|
|
|
|
.p-r { padding-right: $spacer-x }
|
|
|
|
.p-b { padding-bottom: $spacer-y; }
|
|
|
|
.p-l { padding-left: $spacer-x; }
|
|
|
|
.p-x {
|
|
|
|
padding-right: $spacer-x;
|
|
|
|
padding-left: $spacer-x;
|
|
|
|
}
|
|
|
|
.p-y {
|
|
|
|
padding-top: $spacer-y;
|
|
|
|
padding-bottom: $spacer-y;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-t-md { padding-top: ($spacer-y * 1.5); }
|
|
|
|
.p-r-md { padding-right: ($spacer-y * 1.5); }
|
|
|
|
.p-b-md { padding-bottom: ($spacer-y * 1.5); }
|
|
|
|
.p-l-md { padding-left: ($spacer-y * 1.5); }
|
|
|
|
.p-x-md {
|
|
|
|
padding-right: ($spacer-x * 1.5);
|
|
|
|
padding-left: ($spacer-x * 1.5);
|
|
|
|
}
|
|
|
|
.p-y-md {
|
|
|
|
padding-top: ($spacer-y * 1.5);
|
|
|
|
padding-bottom: ($spacer-y * 1.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-t-lg { padding-top: ($spacer-y * 3); }
|
|
|
|
.p-r-lg { padding-right: ($spacer-y * 3); }
|
|
|
|
.p-b-lg { padding-bottom: ($spacer-y * 3); }
|
|
|
|
.p-l-lg { padding-left: ($spacer-y * 3); }
|
|
|
|
.p-x-lg {
|
|
|
|
padding-right: ($spacer-x * 3);
|
|
|
|
padding-left: ($spacer-x * 3);
|
2014-07-14 11:48:26 -04:00
|
|
|
}
|
2015-04-14 04:01:30 -04:00
|
|
|
.p-y-lg {
|
|
|
|
padding-top: ($spacer-y * 3);
|
|
|
|
padding-bottom: ($spacer-y * 3);
|
2014-07-14 11:48:26 -04:00
|
|
|
}
|
|
|
|
|
2015-04-14 04:01:30 -04:00
|
|
|
|
|
|
|
|
2014-07-14 12:03:21 -04:00
|
|
|
// Positioning
|
|
|
|
.pos-f-t {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
left: 0;
|
2014-12-02 17:02:35 -05:00
|
|
|
z-index: $zindex-navbar-fixed;
|
2014-07-14 12:03:21 -04:00
|
|
|
}
|
|
|
|
|
2014-12-23 07:10:59 -05:00
|
|
|
// Always hide an element with the `hidden` HTML attribute (from PureCSS).
|
|
|
|
[hidden] {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2014-12-23 07:10:59 -05:00
|
|
|
|
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
|
|
|
|
2015-04-18 14:38:47 -04:00
|
|
|
//
|
|
|
|
// Text
|
|
|
|
//
|
|
|
|
|
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; }
|
2014-12-11 17:12:10 -05:00
|
|
|
.text-truncate { @include text-truncate; }
|
2014-09-18 22:15:01 -04:00
|
|
|
|
|
|
|
// Transformation
|
|
|
|
.text-lowercase { text-transform: lowercase; }
|
|
|
|
.text-uppercase { text-transform: uppercase; }
|
|
|
|
.text-capitalize { text-transform: capitalize; }
|
|
|
|
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-04-18 14:38:47 -04:00
|
|
|
// Contextual colors
|
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);
|
|
|
|
|
2015-04-18 14:38:47 -04:00
|
|
|
|
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
|
|
|
|
2015-04-18 14:38:47 -04:00
|
|
|
// Inverse
|
|
|
|
// Todo: redo this as a proper class
|
|
|
|
.inverse {
|
|
|
|
color: $gray-lighter;
|
|
|
|
background-color: $gray-dark;
|
|
|
|
}
|
|
|
|
|
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);
|