-
Notifications
You must be signed in to change notification settings - Fork 259
/
Copy pathbars-square.less
74 lines (62 loc) · 1.29 KB
/
bars-square.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
@import "variables.less";
@import "mixins.less";
.br-theme-bars-square {
.br-widget {
height: 15px;
white-space: nowrap;
a {
display: block;
width: 30px;
height: 30px;
float: left;
border: 2px solid lighten(@blue-color, 25%);
background-color: white;
margin: 2px;
text-decoration: none;
font-size: 14px;
font-weight: 400;
line-height: 2;
text-align: center;
color: lighten(@blue-color, 25%);
font-weight: 600;
&.br-active,
&.br-selected {
border: 2px solid @blue-color;
color: @blue-color;
}
}
.br-current-rating {
clear: both;
width: 330px;
text-align: center;
font-weight: 600;
display: block;
padding: .5em 0;
color: #646464;
}
}
.br-readonly {
a {
cursor: default;
&.br-active, &.br-selected {
border: 2px solid lighten(@blue-color, 10%);
color: lighten(@blue-color, 10%);
}
}
}
}
@media print {
.br-theme-bars-square {
.br-widget {
a {
border: 2px solid lighten(black, 70%);
color: lighten(black, 70%);
&.br-active,
&.br-selected {
border: 2px solid black;
color: black;
}
}
}
}
}