2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-09 00:38:57 +01:00
|
|
|
|
2012-09-26 17:59:57 +02:00
|
|
|
// Floats
|
2012-12-20 02:49:20 +01:00
|
|
|
.clearfix {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include clearfix();
|
2012-09-26 17:59:57 +02:00
|
|
|
}
|
2013-09-01 11:20:58 +02:00
|
|
|
.center-block {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include center-block();
|
2013-09-01 11:20:58 +02:00
|
|
|
}
|
2014-12-16 21:29:47 +01:00
|
|
|
|
2012-01-09 00:38:57 +01:00
|
|
|
.pull-right {
|
2014-12-16 21:29:47 +01:00
|
|
|
@include pull-right();
|
2012-01-09 00:38:57 +01:00
|
|
|
}
|
|
|
|
.pull-left {
|
2014-12-16 21:29:47 +01:00
|
|
|
@include pull-left();
|
2012-01-09 00:38:57 +01:00
|
|
|
}
|
|
|
|
|
2012-09-26 17:59:57 +02:00
|
|
|
|
2014-07-14 17:48:26 +02:00
|
|
|
// Inverse
|
|
|
|
.inverse {
|
2014-12-02 23:02:35 +01:00
|
|
|
color: $gray-lighter;
|
|
|
|
background-color: $gray-dark;
|
2014-07-14 17:48:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Spacing
|
|
|
|
.p-a {
|
2014-12-02 23:02:35 +01:00
|
|
|
padding: $spacer;
|
2014-07-14 17:48:26 +02:00
|
|
|
}
|
|
|
|
.p-h {
|
2014-12-02 23:02:35 +01:00
|
|
|
padding-right: $spacer;
|
2014-12-11 21:05:29 +01:00
|
|
|
padding-left: $spacer;
|
2014-07-14 17:48:26 +02:00
|
|
|
}
|
|
|
|
.p-v {
|
2014-12-02 23:02:35 +01:00
|
|
|
padding-top: $spacer;
|
|
|
|
padding-bottom: $spacer;
|
2014-07-14 17:48:26 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 18:03:21 +02:00
|
|
|
// Positioning
|
|
|
|
.pos-f-t {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2014-12-11 21:05:29 +01:00
|
|
|
left: 0;
|
2014-12-02 23:02:35 +01:00
|
|
|
z-index: $zindex-navbar-fixed;
|
2014-07-14 18:03:21 +02:00
|
|
|
}
|
|
|
|
|
2014-12-23 13:10:59 +01:00
|
|
|
// Always hide an element with the `hidden` HTML attribute (from PureCSS).
|
|
|
|
[hidden] {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2012-01-09 00:38:57 +01:00
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2014-12-23 13:10:59 +01:00
|
|
|
|
2012-09-26 17:59:57 +02:00
|
|
|
.text-hide {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include text-hide();
|
2012-09-26 17:59:57 +02:00
|
|
|
}
|
|
|
|
|
2012-07-23 03:28:39 +02:00
|
|
|
|
2014-09-19 04:15:01 +02: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 23:12:10 +01:00
|
|
|
.text-truncate { @include text-truncate; }
|
2014-09-19 04:15:01 +02:00
|
|
|
|
|
|
|
// Transformation
|
|
|
|
.text-lowercase { text-transform: lowercase; }
|
|
|
|
.text-uppercase { text-transform: uppercase; }
|
|
|
|
.text-capitalize { text-transform: capitalize; }
|
|
|
|
|
|
|
|
// Contextual colors
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2014-09-19 04:15:01 +02:00
|
|
|
.text-muted {
|
2014-12-02 23:02:35 +01:00
|
|
|
color: $text-muted;
|
2014-09-19 04:15:01 +02:00
|
|
|
}
|
|
|
|
|
2014-12-02 23:02:35 +01: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-19 04:15:01 +02: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 23:02:35 +01:00
|
|
|
|
2014-09-19 04:15:01 +02:00
|
|
|
.bg-primary {
|
|
|
|
// Given the contrast here, this is the only class to have its color inverted
|
|
|
|
// automatically.
|
|
|
|
color: #fff;
|
|
|
|
}
|
2014-12-02 23:02:35 +01: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);
|