FScores.less
1.16 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
.wev-comp-score {
overflow: hidden;
display: inline-block;
vertical-align: bottom;
}
.wev-comp-score > b {
float: left;
width: 30px;
height: 40px;
position: relative;
cursor: pointer;
-webkit-tap-highlight-color:transparent;
}
.wev-comp-score > b:before,
.wev-comp-score > b:after {
content: '';
width: 20px;
height: 20px;
position: absolute;
top: 50%;
left: 0px;
background-repeat: no-repeat;
background-size: 100%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
}
.wev-comp-score > b:before{
background-image: url(/mobilemode/mobile/images/plugin/favor.png);
}
.wev-comp-score > b:after{
background-image: url(/mobilemode/mobile/images/plugin/favor-fill.png);
display: none;
}
.wev-comp-score.wev-comp-score-fill > b:before,
.wev-comp-score.wev-comp-score-fill > b.active ~ b:after {
display: none;
}
.wev-comp-score.wev-comp-score-fill > b:after,
.wev-comp-score.wev-comp-score-fill > b.active ~ b:before {
display: block;
}
.wev-comp-score label{
color: #b4b4b4;
font-size: @font-size-base;
height: 40px;
display: block;
line-height: 42px;
margin-left: 4px;
float: left;
}