hjg
2023-11-18 bb48edb3d9faaaeab0088151c86fc24137acdb08
提交 | 用户 | 时间
58d006 1 .enable_plugin_raty() when (@enable-plugin-raty = true) {
A 2
3 .cancel-on-png, .cancel-off-png, .star-on-png, .star-off-png, .star-half-png {
4   font-size: 2em;
5 }
6
7 .cancel-on-png, .cancel-off-png, .star-on-png, .star-off-png, .star-half-png {
8   -moz-osx-font-smoothing: grayscale;
9   -webkit-font-smoothing: antialiased;
10   font-family: "FontAwesome";
11   font-style: normal;
12   font-variant: normal;
13   font-weight: normal;
14   line-height: 1;
15   speak: none;
16   text-transform: none;
17   
18   color: @ace-grey;
19 }
20
21 .cancel-on-png {
22   &:before {
23     content: "\f057";
24   }
25   color: @ace-red;
26 }
27
28 .cancel-off-png {
29   &:before {
30     content: "\f05c";
31   }
32   color: @ace-red2;
33 }
34
35 .star-on-png {
36   &:before {
37     content: "\f005";
38   }
39   color: @ace-orange2;
40 }
41
42 .star-off-png {
43   &:before {
44     content: "\f006";
45   }
46   color: @ace-grey;
47 }
48
49 .star-half-png {
50   &:before {
51     content: "\f123";
52   }
53   color: @ace-orange2;
54 }
55
56
57 }
58 .enable_plugin_raty();