-
Notifications
You must be signed in to change notification settings - Fork 259
/
Copy pathbars-reversed.less
78 lines (64 loc) · 1.3 KB
/
bars-reversed.less
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
@import "variables.less";
@import "mixins.less";
.br-theme-bars-reversed {
.br-widget {
height: 25px;
white-space: nowrap;
a {
display: block;
width: 22px;
height: 22px;
float: left;
background-color: lighten(@green-color, 25%);
margin: 1px;
font-size: 15px;
font-weight: 400;
line-height: 1.4;
color: @green-color;
text-align: center;
&.br-active,
&.br-selected {
background-color: @green-color;
color: white;
}
}
.br-current-rating {
line-height: 1.3;
float: left;
padding: 0 20px 0 20px;
color: @green-color;
font-size: 17px;
font-weight: 400;
}
}
.br-readonly {
a {
cursor: default;
&.br-active, &.br-selected {
background-color: lighten(@green-color, 10%);
}
}
.br-current-rating {
color: lighten(@green-color, 10%);
}
}
}
@media print {
.br-theme-bars-reversed {
.br-widget {
a {
border: 1px solid lighten(black, 70%);
background: white;
.box-sizing(border-box);
&.br-active,
&.br-selected {
border: 1px solid black;
background: white;
}
}
.br-current-rating {
color: black;
}
}
}
}