AdminLTE/build/scss/_text.scss

52 lines
692 B
SCSS
Raw Normal View History

//
// Component: Text
//
// text modification
2018-03-17 17:07:55 +00:00
.text-bold {
&,
&.table td,
&.table th {
2018-03-17 17:07:55 +00:00
font-weight: 700;
}
}
.text-xs {
font-size: $font-size-xs !important;
}
2018-03-17 17:07:55 +00:00
.text-sm {
font-size: $font-size-sm !important;
2018-03-17 17:07:55 +00:00
}
.text-md {
font-size: $font-size-base !important;
2018-03-17 17:07:55 +00:00
}
.text-lg {
font-size: $font-size-lg !important;
2018-03-17 17:07:55 +00:00
}
.text-xl {
font-size: $font-size-xl !important;
2018-03-17 17:07:55 +00:00
}
// text color variations
@each $name, $color in $colors {
.text-#{$name} {
2020-04-28 08:55:48 +00:00
color: #{$color} !important;
}
}
2020-09-23 14:08:15 +00:00
@include dark-mode () {
2020-09-23 14:08:15 +00:00
.text-muted {
color: $gray-500 !important;
}
2021-03-09 19:44:26 +00:00
@each $name, $color in $colors-alt {
.text-#{$name} {
color: #{$color} !important;
}
}
2020-09-23 14:08:15 +00:00
}