2015-04-18 20:38:47 +02:00
|
|
|
//
|
2012-09-26 17:59:57 +02:00
|
|
|
// Floats
|
2015-04-18 20:38:47 +02:00
|
|
|
//
|
|
|
|
|
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
|
|
|
}
|
2015-04-18 20:38:47 +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
|
|
|
}
|
2015-04-18 20:38:47 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Screenreaders
|
|
|
|
//
|
|
|
|
|
2015-03-31 02:36:00 +02:00
|
|
|
.sr-only {
|
|
|
|
@include sr-only();
|
|
|
|
}
|
|
|
|
|
|
|
|
.sr-only-focusable {
|
|
|
|
@include sr-only-focusable();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
//
|
|
|
|
// Text
|
|
|
|
//
|
|
|
|
|
2014-09-19 04:15:01 +02:00
|
|
|
// Alignment
|
2015-08-11 07:46:43 +02:00
|
|
|
|
2014-09-19 04:15:01 +02:00
|
|
|
.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
|
|
|
|
2015-08-11 07:46:43 +02:00
|
|
|
// Responsive alignment
|
|
|
|
|
|
|
|
.text-xs-left { text-align: left; }
|
|
|
|
.text-xs-right { text-align: right; }
|
|
|
|
.text-xs-center { text-align: center; }
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
.text-sm-left { text-align: left; }
|
|
|
|
.text-sm-right { text-align: right; }
|
|
|
|
.text-sm-center { text-align: center; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
.text-md-left { text-align: left; }
|
|
|
|
.text-md-right { text-align: right; }
|
|
|
|
.text-md-center { text-align: center; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
.text-lg-left { text-align: left; }
|
|
|
|
.text-lg-right { text-align: right; }
|
|
|
|
.text-lg-center { text-align: center; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(xl) {
|
|
|
|
.text-xl-left { text-align: left; }
|
|
|
|
.text-xl-right { text-align: right; }
|
|
|
|
.text-xl-center { text-align: center; }
|
|
|
|
}
|
|
|
|
|
2014-09-19 04:15:01 +02:00
|
|
|
// Transformation
|
2015-08-11 07:46:43 +02:00
|
|
|
|
2014-09-19 04:15:01 +02:00
|
|
|
.text-lowercase { text-transform: lowercase; }
|
|
|
|
.text-uppercase { text-transform: uppercase; }
|
|
|
|
.text-capitalize { text-transform: capitalize; }
|
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
// Contextual colors
|
2015-08-11 07:46:43 +02: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);
|
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include text-emphasis-variant('.text-success', $brand-success);
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include text-emphasis-variant('.text-info', $brand-info);
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include text-emphasis-variant('.text-warning', $brand-warning);
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include text-emphasis-variant('.text-danger', $brand-danger);
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
|
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
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
// Inverse
|
|
|
|
// Todo: redo this as a proper class
|
2015-08-18 09:45:32 +02:00
|
|
|
.bg-inverse {
|
2015-04-18 20:38:47 +02:00
|
|
|
color: $gray-lighter;
|
|
|
|
background-color: $gray-dark;
|
|
|
|
}
|
|
|
|
|
2015-08-18 09:45:32 +02:00
|
|
|
.bg-faded {
|
|
|
|
background-color: $gray-lightest;
|
|
|
|
}
|
|
|
|
|
2014-12-02 23:02:35 +01:00
|
|
|
@include bg-variant('.bg-primary', $brand-primary);
|
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include bg-variant('.bg-success', $brand-success);
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include bg-variant('.bg-info', $brand-info);
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include bg-variant('.bg-warning', $brand-warning);
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include bg-variant('.bg-danger', $brand-danger);
|