summaryrefslogtreecommitdiffstats
path: root/public/ng/less/ui/label.less
blob: ab07718f302d39def2ae7a5bd69e863544b95ff1 (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
42
43
@import "var";

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

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

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

.label-gray {
  background-color: @labelGrayColor;
}
.label-green {
    background-color: @labelGreenColor;
    &:hover {
        background-color: @btnHoverGreenColor;
        color: #FFF;
    }
}
.label-orange {
  background-color: @labelOrangeColor;
}

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

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

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