AdminLTE/build/scss/_labels.scss

30 lines
327 B
SCSS
Raw Normal View History

2015-10-31 22:00:16 +01:00
/*
* Component: Labels
* -----------------
2015-10-31 22:00:16 +01:00
*/
2015-10-31 22:00:16 +01:00
.label-default {
2018-02-04 00:45:19 +01:00
background-color: $gray-500;
color: $gray-700;
2015-10-31 22:00:16 +01:00
}
.label-danger {
2018-03-17 18:07:55 +01:00
@extend .bg-danger;
2015-10-31 22:00:16 +01:00
}
.label-info {
2018-03-17 18:07:55 +01:00
@extend .bg-info;
2015-10-31 22:00:16 +01:00
}
.label-warning {
2018-03-17 18:07:55 +01:00
@extend .bg-warning;
2015-10-31 22:00:16 +01:00
}
.label-primary {
2018-03-17 18:07:55 +01:00
@extend .bg-primary;
2015-10-31 22:00:16 +01:00
}
.label-success {
2018-03-17 18:07:55 +01:00
@extend .bg-success;
2015-10-31 22:00:16 +01:00
}