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
|
|
|
|
2015-11-25 05:32:41 -05:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
|
|
|
.pull-#{$breakpoint}-left {
|
|
|
|
@include pull-left();
|
|
|
|
}
|
|
|
|
.pull-#{$breakpoint}-right {
|
|
|
|
@include pull-right();
|
|
|
|
}
|
|
|
|
.pull-#{$breakpoint}-none {
|
|
|
|
float: none !important;
|
|
|
|
}
|
|
|
|
}
|
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-01-08 18:38:57 -05:00
|
|
|
.invisible {
|
2015-10-23 15:30:56 -04:00
|
|
|
visibility: hidden !important;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
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
|
2015-08-11 01:46:43 -04:00
|
|
|
|
2015-10-23 15:24:39 -04:00
|
|
|
.text-justify { text-align: justify !important; }
|
|
|
|
.text-nowrap { white-space: nowrap !important; }
|
2014-12-11 17:12:10 -05:00
|
|
|
.text-truncate { @include text-truncate; }
|
2014-09-18 22:15:01 -04:00
|
|
|
|
2015-08-11 01:46:43 -04:00
|
|
|
// Responsive alignment
|
|
|
|
|
2015-10-23 14:49:45 -04:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
2015-11-22 15:29:48 -05: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 14:49:45 -04:00
|
|
|
}
|
2015-08-11 01:46:43 -04:00
|
|
|
}
|
|
|
|
|
2014-09-18 22:15:01 -04:00
|
|
|
// Transformation
|
2015-08-11 01:46:43 -04:00
|
|
|
|
2015-10-23 15:26:31 -04:00
|
|
|
.text-lowercase { text-transform: lowercase !important; }
|
|
|
|
.text-uppercase { text-transform: uppercase !important; }
|
|
|
|
.text-capitalize { text-transform: capitalize !important; }
|
2014-09-18 22:15:01 -04:00
|
|
|
|
2015-04-18 14:38:47 -04:00
|
|
|
// Contextual colors
|
2015-08-11 01:46:43 -04: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);
|
|
|
|
|
2015-08-14 02:47:47 -04:00
|
|
|
@include text-emphasis-variant('.text-success', $brand-success);
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-08-14 02:47:47 -04:00
|
|
|
@include text-emphasis-variant('.text-info', $brand-info);
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-08-14 02:47:47 -04:00
|
|
|
@include text-emphasis-variant('.text-warning', $brand-warning);
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-08-14 02:47:47 -04:00
|
|
|
@include text-emphasis-variant('.text-danger', $brand-danger);
|