-
Notifications
You must be signed in to change notification settings - Fork 259
/
Copy pathcss-stars.less
61 lines (48 loc) · 825 Bytes
/
css-stars.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
@import "variables.less";
.br-theme-css-stars {
.br-widget {
height: 28px;
white-space: nowrap;
a {
text-decoration: none;
height: 18px;
width: 18px;
float: left;
font-size: 23px;
margin-right: 5px;
}
a:after {
content: "\2605";
color: @star-default;
}
a.br-active:after {
color: @star-active;
}
a.br-selected:after {
color: @star-selected;
}
.br-current-rating {
display: none;
}
}
.br-readonly {
a {
cursor: default;
}
}
}
@media print {
.br-theme-css-stars {
.br-widget {
a:after {
content: "\2606";
color: black;
}
a.br-active:after,
a.br-selected:after {
content: "\2605";
color: black;
}
}
}
}