Blame view

src/styles/components/rate.less 1.36 KB
49d380cf   梁灏   init Rate component
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
  @rate-prefix-cls: ~"@{css-prefix}rate";
  
  .@{rate-prefix-cls} {
      display: inline-block;
      margin: 0;
      padding: 0;
      font-size: 20px;
      vertical-align: middle;
      font-weight: normal;
      font-style: normal;
      font-family: 'Ionicons';
  
      &-disabled &-star {
          &:before,
          &-content:before {
              cursor: default;
          }
          &:hover {
              transform: scale(1);
          }
      }
  
      &-star {
          display: inline-block;
          margin: 0;
          padding: 0;
          margin-right: 8px;
          position: relative;
          transition: all 0.3s ease;
  
          &:hover {
              transform: scale(1.1);
          }
  
          &:before,
          &-content:before {
              color: #e9e9e9;
              cursor: pointer;
              content: "\F4B3";
              transition: all @transition-time @ease-in-out;
              display: block;
          }
  
          &-content {
              position: absolute;
              left: 0;
              top: 0;
              width: 50%;
              height: 100%;
              overflow: hidden;
              &:before {
                  color: transparent;
              }
          }
  
          &-half &-content:before,
          &-full:before {
              color: @rate-star-color;
          }
  
          &-half:hover &-content:before,
          &-full:hover:before {
              color: tint(@rate-star-color, 20%);
          }
      }
  }