AdminLTE/build/less/labels.less

29 lines
322 B
Plaintext
Raw Normal View History

2015-02-01 22:25:09 +01:00
/*
* Component: Label
* ----------------
*/
2015-02-16 21:01:03 +01:00
.label-default {
background-color: @gray;
2015-02-17 03:06:55 +01:00
color: #444;
2015-02-16 21:01:03 +01:00
}
2015-09-19 20:05:54 +02:00
2015-02-01 22:25:09 +01:00
.label-danger {
&:extend(.bg-red);
}
2015-09-19 20:05:54 +02:00
2015-02-01 22:25:09 +01:00
.label-info {
&:extend(.bg-aqua);
}
2015-09-19 20:05:54 +02:00
.label-warning {
2015-02-01 22:25:09 +01:00
&:extend(.bg-yellow);
}
2015-09-19 20:05:54 +02:00
2015-02-01 22:25:09 +01:00
.label-primary {
&:extend(.bg-light-blue);
}
2015-09-19 20:05:54 +02:00
2015-02-01 22:25:09 +01:00
.label-success {
&:extend(.bg-green);
2015-07-12 15:42:26 +02:00
}