// stylelint-disable declaration-no-important // Margin and Padding @each $breakpoint in map-keys($grid-breakpoints) { @include media-breakpoint-up($breakpoint) { $infix: breakpoint-infix($breakpoint, $grid-breakpoints); @each $prop, $abbrev in (margin: m, padding: p) { @each $size, $length in $spacers { .#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; } .#{$abbrev}t#{$infix}-#{$size}, .#{$abbrev}y#{$infix}-#{$size} { #{$prop}-top: $length !important; } .#{$abbrev}r#{$infix}-#{$size}, .#{$abbrev}x#{$infix}-#{$size} { #{$prop}-right: $length !important; } .#{$abbrev}b#{$infix}-#{$size}, .#{$abbrev}y#{$infix}-#{$size} { #{$prop}-bottom: $length !important; } .#{$abbrev}l#{$infix}-#{$size}, .#{$abbrev}x#{$infix}-#{$size} { #{$prop}-left: $length !important; } } } // Some special margin utils .m#{$infix}-auto { margin: auto !important; } .mt#{$infix}-auto, .my#{$infix}-auto { margin-top: auto !important; } .mr#{$infix}-auto, .mx#{$infix}-auto { margin-right: auto !important; } .mb#{$infix}-auto, .my#{$infix}-auto { margin-bottom: auto !important; } .ml#{$infix}-auto, .mx#{$infix}-auto { margin-left: auto !important; } } } @each $color, $value in $theme-colors { @include bg-variant(".bg-#{$color}", $value); } @if $enable-gradients { @each $color, $value in $theme-colors { @include bg-gradient-variant(".bg-gradient-#{$color}", $value); } } .bg-white { background-color: $white !important; } .bg-transparent { background-color: transparent !important; } .text-monospace { font-family: $font-family-monospace; } // Alignment .text-justify { text-align: justify !important; } .text-nowrap { white-space: nowrap !important; } .text-truncate { @include text-truncate; } // Responsive alignment @each $breakpoint in map-keys($grid-breakpoints) { @include media-breakpoint-up($breakpoint) { $infix: breakpoint-infix($breakpoint, $grid-breakpoints); .text#{$infix}-left { text-align: left !important; } .text#{$infix}-right { text-align: right !important; } .text#{$infix}-center { text-align: center !important; } } } // Transformation .text-lowercase { text-transform: lowercase !important; } .text-uppercase { text-transform: uppercase !important; } .text-capitalize { text-transform: capitalize !important; } // Weight and italics .font-weight-light { font-weight: $font-weight-light !important; } .font-weight-normal { font-weight: $font-weight-normal !important; } .font-weight-bold { font-weight: $font-weight-bold !important; } .font-italic { font-style: italic !important; } // Contextual colors .text-white { color: $white !important; } @each $color, $value in $theme-colors { @include text-emphasis-variant(".text-#{$color}", $value); } .text-body { color: $body-color !important; } .text-muted { color: $text-muted !important; } .text-black-50 { color: rgba($black, .5) !important; } .text-white-50 { color: rgba($white, .5) !important; } // Misc .text-hide { @include text-hide($ignore-warning: true); } // // Border // .border { border: $border-width solid $border-color !important; } .border-top { border-top: $border-width solid $border-color !important; } .border-right { border-right: $border-width solid $border-color !important; } .border-bottom { border-bottom: $border-width solid $border-color !important; } .border-left { border-left: $border-width solid $border-color !important; } .border-0 { border: 0 !important; } .border-top-0 { border-top: 0 !important; } .border-right-0 { border-right: 0 !important; } .border-bottom-0 { border-bottom: 0 !important; } .border-left-0 { border-left: 0 !important; } @each $color, $value in $theme-colors { .border-#{$color} { border-color: $value !important; } } .border-white { border-color: $white !important; } // // Border-radius // .rounded { border-radius: $border-radius !important; } .rounded-top { border-top-left-radius: $border-radius !important; border-top-right-radius: $border-radius !important; } .rounded-right { border-top-right-radius: $border-radius !important; border-bottom-right-radius: $border-radius !important; } .rounded-bottom { border-bottom-right-radius: $border-radius !important; border-bottom-left-radius: $border-radius !important; } .rounded-left { border-top-left-radius: $border-radius !important; border-bottom-left-radius: $border-radius !important; } .rounded-circle { border-radius: 50% !important; } .rounded-0 { border-radius: 0 !important; }