aboutsummaryrefslogtreecommitdiffstats
path: root/public/ng/less/ui/label.less
blob: a2a8a67905797429815fe7678c47ab6c7a7effea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@import "var";

.label {
    padding: 2px 6px;
    color: @labelFontColor;
}

.label-red {
  background-color: @labelRedColor;
}

.label-blue {
  background-color: @labelBlueColor;
}

.label-gray {
  background-color: @labelGrayColor;
}

.label-green {
  background-color: @labelGreenColor;
}

.label-orange {
  background-color: @labelOrangeColor;
}

.label-black {
  background-color: @labelBlackColor;
}

.label-radius{
    border-radius: .2em;
}

.label-link{
  color: @labelFontColor;
  &:hover{
    color: @labelFontColor;
  }
}