Blame view

WebRoot/static/ace/css/less/thirdparty-raty.less 905 Bytes
ad5081d3   孙向锦   初始化项目
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
  .enable_plugin_raty() when (@enable-plugin-raty = true) {
  
  .cancel-on-png, .cancel-off-png, .star-on-png, .star-off-png, .star-half-png {
    font-size: 2em;
  }
  
  .cancel-on-png, .cancel-off-png, .star-on-png, .star-off-png, .star-half-png {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "FontAwesome";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    
    color: @ace-grey;
  }
  
  .cancel-on-png {
    &:before {
  	content: "\f057";
    }
    color: @ace-red;
  }
  
  .cancel-off-png {
    &:before {
  	content: "\f05c";
    }
    color: @ace-red2;
  }
  
  .star-on-png {
    &:before {
  	content: "\f005";
    }
    color: @ace-orange2;
  }
  
  .star-off-png {
    &:before {
  	content: "\f006";
    }
    color: @ace-grey;
  }
  
  .star-half-png {
    &:before {
  	content: "\f123";
    }
    color: @ace-orange2;
  }
  
  
  }
  .enable_plugin_raty();