AdminLTE/build/scss/_labels.scss

29 lines
319 B
SCSS
Raw Normal View History

2015-10-31 22:00:16 +01:00
/*
* Component: Label
* ----------------
*/
.label-default {
2018-02-04 00:45:19 +01:00
background-color: $gray-500;
2015-10-31 22:00:16 +01:00
color: #444;
}
.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
}