index.css
2.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
.zui-tag {
font-size: 14px;
text-align: center;
display: inline-block;
-webkit-user-select: none;
}
.zui-tag .default {
background: rgba(0,0,0,0);
color: rgba(231, 64, 33, 1);
border-color: rgba(231, 64, 33, 1);
}
.zui-tag .shape-square {
padding: 0 6px;
border-radius: 50%;
}
.zui-tag .shape-square {
padding: 0 6px;
border-radius: 0;
}
.zui-tag .shape-fillet {
padding: 1px 4px;
border-radius: 1px;
}
.zui-tag .shape-quarter {
position: relative;
display: flex;
width: 28px;
height: 28px;
background: transparent;
overflow: hidden;
}
.zui-tag .shape-quarter .quarter-content {
position: relative;
left: 10%;
bottom: 10%;
display: flex;
flex: 1;
z-index: 2;
justify-content: center;
align-items: center;
}
.zui-tag .shape-quarter .quarter-bg {
position: absolute;
top: -100%;
left: 0;
width: 200%;
height: 200%;
border-radius: 50%;
}
.zui-tag .shape-quarter .quarter-wrap {
display: inline-block;
padding: 8px 6px 5px 13px;
}
.zui-tag .shape-quarter .quarter-wrap-hidden {
visibility: hidden;
display: inline-block;
padding: 8px 6px 5px 13px;
}
.zui-tag .shape-quarter.size-small {
width: 20px;
height: 20px;
}
.zui-tag .shape-quarter.size-tiny {
width: 12px;
height: 12px;
}
.zui-tag .shape-coupon {
position: relative;
padding: 0 5px;
background: transparent !important;
}
.zui-tag .shape-coupon .coupon-container {
padding: 1px 0;
}
.zui-tag .shape-coupon .left-coupon,
.zui-tag .shape-coupon .right-coupon {
position: absolute;
top: 0;
width: 5px;
height: 100%;
}
.zui-tag .shape-coupon .left-coupon {
left: 0;
}
.zui-tag .shape-coupon .right-coupon {
right: 0;
}
.zui-tag .shape-coupon.size-small {
padding: 0 4px;
}
.zui-tag .shape-coupon.size-small .left-coupon,
.zui-tag .shape-coupon.size-small .right-coupon {
width: 4px;
}
.zui-tag .shape-coupon.size-tiny {
padding: 0 2.5px;
}
.zui-tag .shape-coupon.size-tiny .left-coupon,
.zui-tag .shape-coupon.size-tiny .right-coupon {
width: 2.5px;
}
.zui-tag .shape-bubble {
width: 25px;
padding: 3px 0;
border-radius: 50%;
border-bottom-left-radius: 0;
box-sizing: border-box;
}
.zui-tag .shape-bubble.size-small {
width: 19px;
padding: 1.5px 0;
}
.zui-tag .shape-bubble.size-tiny {
width: 12px;
padding: 1px 0;
}
.zui-tag .size-large {
font-size: 13px;
}
.zui-tag .size-small {
font-size: 10px;
}
.zui-tag .size-tiny {
font-size: 6px;
}
.zui-tag .type-fill {
color: #fff;
background: rgba(231, 64, 33, 1);
}
.zui-tag .type-ghost {
border: 1px solid rgba(231, 64, 33, 1);
background: rgba(0,0,0,0);
}
.zui-tag .font-weight-normal {
font-weight: normal;
}
.zui-tag .font-weight-bold {
font-weight: bold;
}
.zui-tag .font-weight-bolder {
font-weight: bolder;
}
.zui-tag .md-icon.icon-font {
font-size: inherit;
transform: scale(1.2);
}