Blame view

src/styles/components/badge.less 3.08 KB
7fa943eb   梁灏   init
1
2
3
  @badge-prefix-cls: ~"@{css-prefix}badge";
  
  .@{badge-prefix-cls} {
7fa943eb   梁灏   init
4
5
      position: relative;
      display: inline-block;
7fa943eb   梁灏   init
6
7
  
      &-count {
a24e80ee   梁灏   update Badge style
8
          font-family: "Monospaced Number";
afb6a9f4   梁灏   update Badge style
9
10
          line-height: 1;
          vertical-align: middle;
7fa943eb   梁灏   init
11
          position: absolute;
e2645048   jingsam   :fire: remove tra...
12
          transform: translateX(50%);
7fa943eb   梁灏   init
13
14
15
16
17
18
19
20
21
22
23
24
25
          top: -10px;
          right: 0;
          height: 20px;
          border-radius: 10px;
          min-width: 20px;
          background: @error-color;
          border: 1px solid transparent;
          color: #fff;
          line-height: 18px;
          text-align: center;
          padding: 0 6px;
          font-size: 12px;
          white-space: nowrap;
e2645048   jingsam   :fire: remove tra...
26
          transform-origin: -10% center;
7fa943eb   梁灏   init
27
          z-index: 10;
e2645048   jingsam   :fire: remove tra...
28
          box-shadow: 0 0 0 1px #fff;
7fa943eb   梁灏   init
29
30
31
32
33
34
35
36
37
38
  
          a,
          a:hover {
              color: #fff;
          }
  
          &-alone {
              top: auto;
              display: block;
              position: relative;
e2645048   jingsam   :fire: remove tra...
39
              transform: translateX(0);
7fa943eb   梁灏   init
40
          }
cc27c42a   梁灏   Badge add type pr...
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  
          &-primary{
              background: @primary-color;
          }
          &-success{
              background: @success-color;
          }
          &-error{
              background: @error-color;
          }
          &-warning{
              background: @warning-color;
          }
          &-info{
              background: @info-color;
          }
          &-normal{
              background: @normal-color;
              color: @subsidiary-color;
          }
7fa943eb   梁灏   init
61
62
63
64
      }
  
      &-dot {
          position: absolute;
e2645048   jingsam   :fire: remove tra...
65
66
          transform: translateX(-50%);
          transform-origin: 0 center;
7fa943eb   梁灏   init
67
68
69
70
71
72
73
          top: -4px;
          right: -8px;
          height: 8px;
          width: 8px;
          border-radius: 100%;
          background: @error-color;
          z-index: 10;
e2645048   jingsam   :fire: remove tra...
74
          box-shadow: 0 0 0 1px #fff;
7fa943eb   梁灏   init
75
      }
0823f88b   梁灏   Badge add status
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
  
      &-status {
          line-height: inherit;
          vertical-align: baseline;
  
          &-dot {
              width: 6px;
              height: 6px;
              display: inline-block;
              border-radius: 50%;
              vertical-align: middle;
              position: relative;
              top: -1px;
          }
          &-success {
              background-color: @success-color;
          }
          &-processing {
              background-color: @processing-color;
              position: relative;
              &:after {
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 100%;
                  border-radius: 50%;
                  border: 1px solid @processing-color;
                  content: '';
                  animation: aniStatusProcessing 1.2s infinite ease-in-out;
              }
          }
          &-default {
              background-color: @normal-color;
          }
          &-error {
              background-color: @error-color;
          }
          &-warning {
              background-color: @warning-color;
          }
          &-text {
7b959eba   梁灏   update Badge style
118
              display: inline-block;
0823f88b   梁灏   Badge add status
119
120
              color: @text-color;
              font-size: @font-size-small;
7b959eba   梁灏   update Badge style
121
              margin-left: 6px;
0823f88b   梁灏   Badge add status
122
123
          }
      }
e2645048   jingsam   :fire: remove tra...
124
  }
0823f88b   梁灏   Badge add status
125
126
127
128
129
130
131
132
133
134
135
  
  @keyframes aniStatusProcessing {
      0% {
          transform: scale(0.8);
          opacity: 0.5;
      }
      100% {
          transform: scale(2.4);
          opacity: 0;
      }
  }