UNPKG

7.96 kBCSSView Raw
1@supports not (color: var(--adm-color-text)) {
2 .adm-button {
3 color: #333333;
4 background-color: #ffffff;
5 font-size: 34px;
6 border-width: 2px;
7 border-style: solid;
8 border-color: #eeeeee;
9 border-radius: 8px;
10 }
11
12 .adm-button::before {
13 transform: translate(-2px, -2px);
14 border: 2px solid #000;
15 border-radius: 8px;
16 }
17
18 .adm-button-default.adm-button-fill-outline {
19 background-color: transparent;
20 border-color: #333333;
21 }
22
23 .adm-button-default.adm-button-fill-none {
24 background-color: transparent;
25 border-width: 0;
26 }
27
28 .adm-button:not(.adm-button-default) {
29 color: #ffffff;
30 }
31
32 .adm-button:not(.adm-button-default).adm-button-fill-outline {
33 background-color: transparent;
34 }
35
36 .adm-button:not(.adm-button-default).adm-button-fill-none {
37 background-color: transparent;
38 border-width: 0;
39 }
40
41 .adm-button-primary {
42 background-color: #1677ff;
43 border-color: #1677ff;
44 }
45
46 .adm-button-primary.adm-button-fill-outline,
47 .adm-button-primary.adm-button-fill-none {
48 color: #1677ff;
49 }
50
51 .adm-button-success {
52 background-color: #00b578;
53 border-color: #00b578;
54 }
55
56 .adm-button-success.adm-button-fill-outline,
57 .adm-button-success.adm-button-fill-none {
58 color: #00b578;
59 }
60
61 .adm-button-danger {
62 background-color: #ff3141;
63 border-color: #ff3141;
64 }
65
66 .adm-button-danger.adm-button-fill-outline,
67 .adm-button-danger.adm-button-fill-none {
68 color: #ff3141;
69 }
70
71 .adm-button-warning {
72 background-color: #ff8f1f;
73 border-color: #ff8f1f;
74 }
75
76 .adm-button-warning.adm-button-fill-outline,
77 .adm-button-warning.adm-button-fill-none {
78 color: #ff8f1f;
79 }
80
81 .adm-button.adm-button-mini {
82 font-size: 26px;
83 }
84
85 .adm-button.adm-button-small {
86 padding-top: 6px;
87 padding-bottom: 6px;
88 font-size: 30px;
89 }
90
91 .adm-button.adm-button-large {
92 padding-top: 22px;
93 padding-bottom: 22px;
94 font-size: 36px;
95 }
96
97 .adm-button.adm-button-shape-rounded {
98 border-radius: 2000px;
99 }
100
101 .adm-button.adm-button-shape-rounded::before {
102 border-radius: 2000px;
103 }
104
105 .adm-button.adm-button-shape-rectangular {
106 border-radius: 0;
107 }
108
109 .adm-cascader .adm-cascader-view-content {
110 height: 620px;
111 }
112
113 .adm-center-popup {
114 z-index: 1000;
115 }
116
117 .adm-center-popup-wrap {
118 min-width: 560px;
119 max-width: 75vw;
120 }
121
122 .adm-center-popup-body {
123 background-color: #ffffff;
124 border-radius: 16px;
125 }
126
127 .adm-error-block-image {
128 height: 200px;
129 width: auto;
130 }
131
132 .adm-error-block-description {
133 font-size: var(--adm-font-size-4);
134 }
135
136 .adm-error-block-description-title {
137 font-size: var(--adm-font-size-7);
138 }
139
140 .adm-error-block-full-page {
141 padding-top: calc(50vh - 400px);
142 }
143
144 .adm-error-block-full-page .adm-error-block-image {
145 height: 400px;
146 width: auto;
147 }
148
149 .adm-error-block-full-page .adm-error-block-description {
150 font-size: var(--adm-font-size-main);
151 }
152
153 .adm-error-block-full-page .adm-error-block-description-title {
154 color: #333333;
155 }
156
157 .adm-image {
158 width: auto;
159 height: auto;
160 }
161
162 .adm-image-tip {
163 background-color: #f5f5f5;
164 }
165
166 .adm-image-tip > svg {
167 color: #999999;
168 }
169
170 .adm-mask {
171 z-index: 1000;
172 }
173
174 .adm-modal-body {
175 font-size: 28px;
176 }
177
178 .adm-modal-title {
179 font-size: 36px;
180 }
181
182 .adm-modal-content {
183 font-size: 30px;
184 color: #333333;
185 }
186
187 .adm-modal-close {
188 color: #999999;
189 font-size: 36px;
190 }
191
192 .adm-modal-footer.adm-space.adm-space-vertical > .adm-space-item.adm-space-item {
193 margin-bottom: 40px;
194 }
195
196 .adm-modal-footer.adm-space.adm-space-vertical > .adm-space-item.adm-space-item:last-child {
197 margin-bottom: 0;
198 }
199
200 .adm-modal-footer .adm-modal-button {
201 font-size: 36px;
202 }
203
204 .adm-page-indicator-dot {
205 width: 6px;
206 height: 6px;
207 border-radius: 2px;
208 background: rgba(0, 0, 0, 0.2);
209 }
210
211 .adm-page-indicator-dot-active {
212 border-radius: 2px;
213 background: #1677ff;
214 }
215
216 .adm-page-indicator-color-white .adm-page-indicator-dot-active.adm-page-indicator-dot-active {
217 background: #ffffff;
218 }
219
220 .adm-page-indicator-horizontal .adm-page-indicator-dot {
221 margin-right: 6px;
222 }
223
224 .adm-page-indicator-horizontal .adm-page-indicator-dot-active {
225 width: 26px;
226 }
227
228 .adm-page-indicator-vertical .adm-page-indicator-dot {
229 margin-bottom: 6px;
230 }
231
232 .adm-page-indicator-vertical .adm-page-indicator-dot-active {
233 height: 26px;
234 }
235
236 .adm-popover-menu.adm-popover .adm-popover-inner-content {
237 padding: 0 !important;
238 }
239
240 .adm-popover-menu-item-text {
241 border-top: solid 2px #eeeeee;
242 }
243
244 .adm-popover-menu-item:active:not(.adm-popover-menu-item-disabled) {
245 background-color: #eeeeee;
246 }
247
248 .adm-popover-menu-item:active:not(.adm-popover-menu-item-disabled)::after {
249 border-bottom: solid 2px #eeeeee;
250 }
251
252 .adm-popover.adm-popover-dark.adm-popover-menu.adm-popover-menu .adm-popover-menu-item-text {
253 border-color: #333333;
254 }
255
256 .adm-popover.adm-popover-dark.adm-popover-menu.adm-popover-menu .adm-popover-menu-item:active:not(.adm-popover-menu-item-disabled) {
257 background-color: #333333;
258 }
259
260 .adm-popover.adm-popover-dark.adm-popover-menu.adm-popover-menu .adm-popover-menu-item:active:not(.adm-popover-menu-item-disabled)::after {
261 border-color: #333333;
262 }
263
264 .adm-popover.adm-popover-dark.adm-popover-menu.adm-popover-menu .adm-popover-inner.adm-popover-inner.adm-popover-inner {
265 background-color: rgba(0, 0, 0, 0.9);
266 }
267
268 .adm-popover {
269 z-index: 1030;
270 color: #333333;
271 }
272
273 .adm-popover.adm-popover-dark {
274 color: #ffffff;
275 }
276
277 .adm-popover.adm-popover-dark .adm-popover-inner {
278 background-color: rgba(0, 0, 0, 0.75);
279 }
280
281 .adm-popover-inner {
282 background-color: #ffffff;
283 font-size: 30px;
284 }
285
286 .adm-popover-inner-content {
287 padding: 16px 24px;
288 }
289
290 .adm-popover-arrow {
291 display: none !important;
292 }
293
294 .adm-scroll-mask-left {
295 background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
296 }
297
298 .adm-scroll-mask-right {
299 background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
300 }
301
302 .adm-space-vertical > .adm-space-item {
303 margin-bottom: 16px;
304 }
305
306 .adm-space-horizontal > .adm-space-item {
307 margin-right: 16px;
308 }
309
310 .adm-space-horizontal.adm-space-wrap {
311 flex-wrap: wrap;
312 margin-bottom: -16px;
313 }
314
315 .adm-space-horizontal.adm-space-wrap > .adm-space-item {
316 padding-bottom: 16px;
317 }
318
319 .adm-spin-loading {
320 width: 64px;
321 height: 64px;
322 }
323
324 .adm-spin-loading-svg {
325 width: 100%;
326 height: 100%;
327 animation: adm-spin-loading-rotate 0.8s infinite linear;
328 }
329
330 .adm-spin-loading-svg > .adm-spin-loading-fill {
331 stroke: #999999;
332 }
333
334 .adm-swiper {
335 display: block;
336 width: 100%;
337 height: auto;
338 border-radius: 0;
339 }
340
341 .adm-swiper-track {
342 padding: 0;
343 }
344
345 .adm-swiper-horizontal .adm-swiper-track {
346 transform: translateX(0%);
347 }
348
349 .adm-swiper-horizontal .adm-swiper-track-inner {
350 width: 100%;
351 }
352
353 .adm-swiper-vertical .adm-swiper-track {
354 transform: translateY(0%);
355 }
356
357 .adm-swiper-vertical .adm-swiper-track-inner {
358 height: 100%;
359 }
360
361 .adm-tabs-header {
362 border-bottom: solid 2px #eeeeee;
363 }
364
365 .adm-tabs-tab {
366 font-size: 34px;
367 }
368
369 .adm-tabs-tab-active {
370 color: #1677ff;
371 }
372
373 .adm-tabs-tab-line {
374 height: 4px;
375 background: #1677ff;
376 border-radius: 4px;
377 }
378
379 .adm-tabs-content {
380 padding: 24px;
381 }
382
383 .adm-tabs-header-mask-left {
384 background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
385 }
386
387 .adm-tabs-header-mask-right {
388 background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
389 }
390
391 .adm-toast-mask .adm-toast-main {
392 font-size: 30px;
393 }
394
395 .adm-toast-loading.adm-toast-loading {
396 width: 96px;
397 height: 96px;
398 margin: 0 auto 16px;
399 }
400
401 .adm-toast-loading.adm-toast-loading .adm-spin-loading-fill {
402 stroke: #ffffff;
403 }
404}
\No newline at end of file