AdminLTE/build/scss/_labels.scss

29 lines
319 B
SCSS
Raw Normal View History

2015-10-31 21:00:16 +00:00
/*
* Component: Label
* ----------------
*/
.label-default {
2018-02-03 23:45:19 +00:00
background-color: $gray-500;
2015-10-31 21:00:16 +00:00
color: #444;
}
.label-danger {
2018-03-17 17:07:55 +00:00
@extend .bg-danger;
2015-10-31 21:00:16 +00:00
}
.label-info {
2018-03-17 17:07:55 +00:00
@extend .bg-info;
2015-10-31 21:00:16 +00:00
}
.label-warning {
2018-03-17 17:07:55 +00:00
@extend .bg-warning;
2015-10-31 21:00:16 +00:00
}
.label-primary {
2018-03-17 17:07:55 +00:00
@extend .bg-primary;
2015-10-31 21:00:16 +00:00
}
.label-success {
2018-03-17 17:07:55 +00:00
@extend .bg-success;
2015-10-31 21:00:16 +00:00
}