_rating.scss
2.25 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/** =====================
Rating css start
========================== **/
.br-wrapper {
margin: 20px 0 50px;
}
.br-theme-bars-1to10 .br-widget .br-current-rating {
clear: both;
padding: 0;
font-size: 13px;
color: #757575;
font-weight: 400;
}
.br-theme-bars-reversed .br-widget .br-current-rating {
clear: both;
padding: 0;
line-height: 2;
font-size: 13px;
}
.br-theme-bars-movie .br-widget .br-current-rating {
color: #757575;
font-weight: 400;
text-align: left;
}
.br-theme-bars-horizontal,
.br-theme-bars-reversed {
.br-widget .br-current-rating {
color: #757575;
font-weight: 400;
font-size: 13px;
}
}
span.value {
display: inline;
}
.current-rating {
position: relative;
top: -50px;
&.hidden {
display: none;
}
}
.your-rating {
position: relative;
top: -50px;
&.hidden {
display: none;
}
}
.br-theme-bars-1to10,
.br-theme-bars-movie,
.br-theme-bars-reversed,
.br-theme-bars-horizontal {
.br-widget a {
background-color: lighten($primary-color, 8%);
&.br-active,
&.br-selected {
background-color: $primary-color;
}
}
}
.br-theme-bars-pill {
.br-widget a {
background-color: lighten($primary-color, 8%);
color: $primary-color;
&.br-active,
&.br-selected {
background-color: $primary-color;
}
}
}
.br-theme-fontawesome-stars {
.br-widget {
a.br-active:after,
a.br-selected:after {
color: $primary-color;
}
}
}
.br-theme-css-stars {
.br-widget {
a.br-active:after,
a.br-selected:after {
color: $primary-color;
}
}
}
.br-theme-bars-square {
.br-widget a {
border: 2px solid lighten($primary-color, 8%);
color: lighten($primary-color, 8%);
&.br-active,
&.br-selected {
border: 2px solid $primary-color;
color: $primary-color;
}
}
}
.br-theme-fontawesome-stars-o {
.br-widget {
a.br-selected:after,
a:after,
a.br-active:after,
a.br-fractional:after {
color: $primary-color;
}
}
}
/**====== Rating css end ======**/