2015-04-18 11:38:47 -07:00
|
|
|
//
|
2012-09-26 08:59:57 -07:00
|
|
|
// Floats
|
2015-04-18 11:38:47 -07:00
|
|
|
//
|
|
|
|
|
2012-12-19 17:49:20 -08:00
|
|
|
.clearfix {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include clearfix();
|
2012-09-26 08:59:57 -07:00
|
|
|
}
|
2015-04-18 11:38:47 -07:00
|
|
|
|
2013-09-01 11:20:58 +02:00
|
|
|
.center-block {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include center-block();
|
2013-09-01 11:20:58 +02:00
|
|
|
}
|
2014-12-16 20:29:47 +00:00
|
|
|
|
2012-01-08 15:38:57 -08:00
|
|
|
.pull-right {
|
2014-12-16 20:29:47 +00:00
|
|
|
@include pull-right();
|
2012-01-08 15:38:57 -08:00
|
|
|
}
|
2015-04-18 11:38:47 -07:00
|
|
|
|
2012-01-08 15:38:57 -08:00
|
|
|
.pull-left {
|
2014-12-16 20:29:47 +00:00
|
|
|
@include pull-left();
|
2012-01-08 15:38:57 -08:00
|
|
|
}
|
|
|
|
|
2015-04-18 11:38:47 -07:00
|
|
|
|
|
|
|
//
|
|
|
|
// Screenreaders
|
|
|
|
//
|
|
|
|
|
2015-03-30 17:36:00 -07:00
|
|
|
.sr-only {
|
|
|
|
@include sr-only();
|
|
|
|
}
|
|
|
|
|
|
|
|
.sr-only-focusable {
|
|
|
|
@include sr-only-focusable();
|
|
|
|
}
|
|
|
|
|
2012-01-08 15:38:57 -08:00
|
|
|
.invisible {
|
2015-10-23 12:30:56 -07:00
|
|
|
visibility: hidden !important;
|
2012-01-08 15:38:57 -08:00
|
|
|
}
|
2014-12-23 04:10:59 -08:00
|
|
|
|
2012-09-26 08:59:57 -07:00
|
|
|
.text-hide {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include text-hide();
|
2012-09-26 08:59:57 -07:00
|
|
|
}
|
|
|
|
|
2012-07-22 18:28:39 -07:00
|
|
|
|
2015-04-18 11:38:47 -07:00
|
|
|
//
|
|
|
|
// Text
|
|
|
|
//
|
|
|
|
|
2014-09-18 19:15:01 -07:00
|
|
|
// Alignment
|
2015-08-10 22:46:43 -07:00
|
|
|
|
2015-10-23 12:24:39 -07:00
|
|
|
.text-justify { text-align: justify !important; }
|
|
|
|
.text-nowrap { white-space: nowrap !important; }
|
2014-12-11 14:12:10 -08:00
|
|
|
.text-truncate { @include text-truncate; }
|
2014-09-18 19:15:01 -07:00
|
|
|
|
2015-08-10 22:46:43 -07:00
|
|
|
// Responsive alignment
|
|
|
|
|
2015-10-23 11:49:45 -07:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
2015-11-22 22:29:48 +02:00
|
|
|
.text-#{$breakpoint}-left { text-align: left !important; }
|
|
|
|
.text-#{$breakpoint}-right { text-align: right !important; }
|
|
|
|
.text-#{$breakpoint}-center { text-align: center !important; }
|
2015-10-23 11:49:45 -07:00
|
|
|
}
|
2015-08-10 22:46:43 -07:00
|
|
|
}
|
|
|
|
|
2014-09-18 19:15:01 -07:00
|
|
|
// Transformation
|
2015-08-10 22:46:43 -07:00
|
|
|
|
2015-10-23 12:26:31 -07:00
|
|
|
.text-lowercase { text-transform: lowercase !important; }
|
|
|
|
.text-uppercase { text-transform: uppercase !important; }
|
|
|
|
.text-capitalize { text-transform: capitalize !important; }
|
2014-09-18 19:15:01 -07:00
|
|
|
|
2015-04-18 11:38:47 -07:00
|
|
|
// Contextual colors
|
2015-08-10 22:46:43 -07:00
|
|
|
|
2014-09-18 19:15:01 -07:00
|
|
|
.text-muted {
|
2014-12-02 14:02:35 -08:00
|
|
|
color: $text-muted;
|
2014-09-18 19:15:01 -07:00
|
|
|
}
|
|
|
|
|
2014-12-02 14:02:35 -08:00
|
|
|
@include text-emphasis-variant('.text-primary', $brand-primary);
|
|
|
|
|
2015-08-13 23:47:47 -07:00
|
|
|
@include text-emphasis-variant('.text-success', $brand-success);
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-08-13 23:47:47 -07:00
|
|
|
@include text-emphasis-variant('.text-info', $brand-info);
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-08-13 23:47:47 -07:00
|
|
|
@include text-emphasis-variant('.text-warning', $brand-warning);
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2015-08-13 23:47:47 -07:00
|
|
|
@include text-emphasis-variant('.text-danger', $brand-danger);
|