AdminLTE/build/less/labels.less

29 lines
322 B
Plaintext
Raw Normal View History

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