synos-helena 22.1.0-beta.0 → 22.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +847 -0
- package/lib/dark.css +1368 -853
- package/lib/dark.css.gz +0 -0
- package/lib/dark.css.map +1 -1
- package/lib/dark.css.map.gz +0 -0
- package/lib/dark.js +1 -1
- package/lib/dark.js.gz +0 -0
- package/lib/dark.js.map +1 -1
- package/lib/dark.js.map.gz +0 -0
- package/lib/helena.css +1368 -853
- package/lib/helena.css.gz +0 -0
- package/lib/helena.css.map +1 -1
- package/lib/helena.css.map.gz +0 -0
- package/lib/helena.js +1 -1
- package/lib/helena.js.gz +0 -0
- package/lib/helena.js.map +1 -1
- package/lib/helena.js.map.gz +0 -0
- package/lib/icons/exception.svg +1 -0
- package/lib/icons/exception.svg.gz +0 -0
- package/lib/icons/export.svg.gz +0 -0
- package/lib/icons/field-time.svg.gz +0 -0
- package/lib/icons/file-calculator.svg.gz +0 -0
- package/lib/icons/hand-service.svg.gz +0 -0
- package/lib/icons/import.svg.gz +0 -0
- package/lib/icons/package.svg.gz +0 -0
- package/lib/icons/process-config.svg.gz +0 -0
- package/lib/icons/transmission.svg.gz +0 -0
- package/lib/images/empty-notification.svg.gz +0 -0
- package/lib/images/micro-download.svg +40 -0
- package/lib/images/micro-download.svg.gz +0 -0
- package/lib/images/micro-gerproc.svg +43 -0
- package/lib/images/micro-gerproc.svg.gz +0 -0
- package/lib/images/micro-insight.svg +42 -0
- package/lib/images/micro-insight.svg.gz +0 -0
- package/lib/images/synchro-logo.svg.gz +0 -0
- package/lib/index.css +134 -129
- package/lib/index.css.gz +0 -0
- package/lib/index.css.map +1 -1
- package/lib/index.css.map.gz +0 -0
- package/lib/index.js +1 -1
- package/lib/index.js.LICENSE.txt.gz +0 -0
- package/lib/index.js.gz +0 -0
- package/lib/index.js.map +1 -1
- package/lib/index.js.map.gz +0 -0
- package/lib/light.css +1368 -853
- package/lib/light.css.gz +0 -0
- package/lib/light.css.map +1 -1
- package/lib/light.css.map.gz +0 -0
- package/lib/light.js +1 -1
- package/lib/light.js.gz +0 -0
- package/lib/light.js.map +1 -1
- package/lib/light.js.map.gz +0 -0
- package/lib/themes/colors/ant-blues.less.gz +0 -0
- package/lib/themes/colors/ant-yellows.less.gz +0 -0
- package/lib/themes/colors/blues.less.gz +0 -0
- package/lib/themes/colors/dark-olive-greens.less.gz +0 -0
- package/lib/themes/colors/gray.less.gz +0 -0
- package/lib/themes/colors/greens.less.gz +0 -0
- package/lib/themes/colors/pinks.less.gz +0 -0
- package/lib/themes/colors/purples.less.gz +0 -0
- package/lib/themes/colors/reds.less.gz +0 -0
- package/lib/themes/colors/yellows.less.gz +0 -0
- package/lib/themes/dark.less.gz +0 -0
- package/lib/themes/default.less.gz +0 -0
- package/lib/themes/general_custom.less.gz +0 -0
- package/lib/themes/light.less.gz +0 -0
- package/package.json +99 -64
- package/lib/index.d.ts +0 -852
package/lib/index.css
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
/* stylelint-disable no-duplicate-selectors */
|
|
3
3
|
/* stylelint-disable */
|
|
4
4
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
5
|
+
.ant-picker-status-error.ant-picker,
|
|
6
|
+
.ant-picker-status-error.ant-picker:not([disabled]):hover {
|
|
7
|
+
background-color: #fff;
|
|
8
|
+
border-color: #ff4d4f;
|
|
9
|
+
}
|
|
10
|
+
.ant-picker-status-error.ant-picker-focused,
|
|
11
|
+
.ant-picker-status-error.ant-picker:focus {
|
|
12
|
+
border-color: #ff7875;
|
|
13
|
+
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14
|
+
border-right-width: 1px;
|
|
15
|
+
outline: 0;
|
|
16
|
+
}
|
|
17
|
+
.ant-picker-status-warning.ant-picker,
|
|
18
|
+
.ant-picker-status-warning.ant-picker:not([disabled]):hover {
|
|
19
|
+
background-color: #fff;
|
|
20
|
+
border-color: #faad14;
|
|
21
|
+
}
|
|
22
|
+
.ant-picker-status-warning.ant-picker-focused,
|
|
23
|
+
.ant-picker-status-warning.ant-picker:focus {
|
|
24
|
+
border-color: #ffc53d;
|
|
25
|
+
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
26
|
+
border-right-width: 1px;
|
|
27
|
+
outline: 0;
|
|
28
|
+
}
|
|
5
29
|
.ant-picker {
|
|
6
30
|
box-sizing: border-box;
|
|
7
31
|
margin: 0;
|
|
@@ -24,12 +48,12 @@
|
|
|
24
48
|
.ant-picker:hover,
|
|
25
49
|
.ant-picker-focused {
|
|
26
50
|
border-color: #40a9ff;
|
|
27
|
-
border-right-width: 1px
|
|
51
|
+
border-right-width: 1px;
|
|
28
52
|
}
|
|
29
53
|
.ant-picker-focused {
|
|
30
54
|
border-color: #40a9ff;
|
|
31
55
|
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
32
|
-
border-right-width: 1px
|
|
56
|
+
border-right-width: 1px;
|
|
33
57
|
outline: 0;
|
|
34
58
|
}
|
|
35
59
|
.ant-picker.ant-picker-disabled {
|
|
@@ -85,13 +109,13 @@
|
|
|
85
109
|
}
|
|
86
110
|
.ant-picker-input > input:hover {
|
|
87
111
|
border-color: #40a9ff;
|
|
88
|
-
border-right-width: 1px
|
|
112
|
+
border-right-width: 1px;
|
|
89
113
|
}
|
|
90
114
|
.ant-picker-input > input:focus,
|
|
91
115
|
.ant-picker-input > input-focused {
|
|
92
116
|
border-color: #40a9ff;
|
|
93
117
|
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
94
|
-
border-right-width: 1px
|
|
118
|
+
border-right-width: 1px;
|
|
95
119
|
outline: 0;
|
|
96
120
|
}
|
|
97
121
|
.ant-picker-input > input-disabled {
|
|
@@ -104,7 +128,7 @@
|
|
|
104
128
|
}
|
|
105
129
|
.ant-picker-input > input-disabled:hover {
|
|
106
130
|
border-color: #d9d9d9;
|
|
107
|
-
border-right-width: 1px
|
|
131
|
+
border-right-width: 1px;
|
|
108
132
|
}
|
|
109
133
|
.ant-picker-input > input[disabled] {
|
|
110
134
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -116,7 +140,7 @@
|
|
|
116
140
|
}
|
|
117
141
|
.ant-picker-input > input[disabled]:hover {
|
|
118
142
|
border-color: #d9d9d9;
|
|
119
|
-
border-right-width: 1px
|
|
143
|
+
border-right-width: 1px;
|
|
120
144
|
}
|
|
121
145
|
.ant-picker-input > input-borderless,
|
|
122
146
|
.ant-picker-input > input-borderless:hover,
|
|
@@ -165,6 +189,8 @@ textarea.ant-picker-input > input {
|
|
|
165
189
|
padding: 0px 7px 0px;
|
|
166
190
|
}
|
|
167
191
|
.ant-picker-suffix {
|
|
192
|
+
display: flex;
|
|
193
|
+
flex: none;
|
|
168
194
|
align-self: center;
|
|
169
195
|
margin-left: 4px;
|
|
170
196
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -174,6 +200,9 @@ textarea.ant-picker-input > input {
|
|
|
174
200
|
.ant-picker-suffix > * {
|
|
175
201
|
vertical-align: top;
|
|
176
202
|
}
|
|
203
|
+
.ant-picker-suffix > *:not(:last-child) {
|
|
204
|
+
margin-right: 8px;
|
|
205
|
+
}
|
|
177
206
|
.ant-picker-clear {
|
|
178
207
|
position: absolute;
|
|
179
208
|
top: 50%;
|
|
@@ -258,14 +287,14 @@ textarea.ant-picker-input > input {
|
|
|
258
287
|
display: none;
|
|
259
288
|
}
|
|
260
289
|
.ant-picker-dropdown-placement-bottomLeft .ant-picker-range-arrow {
|
|
261
|
-
top:
|
|
290
|
+
top: 2.58561808px;
|
|
262
291
|
display: block;
|
|
263
|
-
transform: rotate(-
|
|
292
|
+
transform: rotate(-135deg) translateY(1px);
|
|
264
293
|
}
|
|
265
294
|
.ant-picker-dropdown-placement-topLeft .ant-picker-range-arrow {
|
|
266
|
-
bottom:
|
|
295
|
+
bottom: 2.58561808px;
|
|
267
296
|
display: block;
|
|
268
|
-
transform: rotate(
|
|
297
|
+
transform: rotate(45deg);
|
|
269
298
|
}
|
|
270
299
|
.ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topLeft,
|
|
271
300
|
.ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topRight,
|
|
@@ -288,7 +317,7 @@ textarea.ant-picker-input > input {
|
|
|
288
317
|
animation-name: antSlideUpOut;
|
|
289
318
|
}
|
|
290
319
|
.ant-picker-dropdown-range {
|
|
291
|
-
padding:
|
|
320
|
+
padding: 7.54247233px 0;
|
|
292
321
|
}
|
|
293
322
|
.ant-picker-dropdown-range-hidden {
|
|
294
323
|
display: none;
|
|
@@ -324,21 +353,26 @@ textarea.ant-picker-input > input {
|
|
|
324
353
|
position: absolute;
|
|
325
354
|
z-index: 1;
|
|
326
355
|
display: none;
|
|
327
|
-
width:
|
|
328
|
-
height:
|
|
356
|
+
width: 11.3137085px;
|
|
357
|
+
height: 11.3137085px;
|
|
329
358
|
margin-left: 16.5px;
|
|
330
|
-
|
|
359
|
+
background: linear-gradient(135deg, transparent 40%, #fff 40%);
|
|
360
|
+
box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.1);
|
|
331
361
|
transition: left 0.3s ease-out;
|
|
362
|
+
border-radius: 0 0 2px;
|
|
363
|
+
pointer-events: none;
|
|
332
364
|
}
|
|
333
|
-
.ant-picker-range-arrow::
|
|
365
|
+
.ant-picker-range-arrow::before {
|
|
334
366
|
position: absolute;
|
|
335
|
-
top:
|
|
336
|
-
|
|
337
|
-
width:
|
|
338
|
-
height:
|
|
339
|
-
|
|
340
|
-
|
|
367
|
+
top: -11.3137085px;
|
|
368
|
+
left: -11.3137085px;
|
|
369
|
+
width: 33.9411255px;
|
|
370
|
+
height: 33.9411255px;
|
|
371
|
+
background: #fff;
|
|
372
|
+
background-repeat: no-repeat;
|
|
373
|
+
background-position: -10px -10px;
|
|
341
374
|
content: '';
|
|
375
|
+
clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
|
|
342
376
|
}
|
|
343
377
|
.ant-picker-panel-container {
|
|
344
378
|
overflow: hidden;
|
|
@@ -448,7 +482,7 @@ textarea.ant-picker-input > input {
|
|
|
448
482
|
display: inline-block;
|
|
449
483
|
width: 7px;
|
|
450
484
|
height: 7px;
|
|
451
|
-
border: 0 solid
|
|
485
|
+
border: 0 solid currentcolor;
|
|
452
486
|
border-width: 1.5px 0 0 1.5px;
|
|
453
487
|
content: '';
|
|
454
488
|
}
|
|
@@ -460,7 +494,7 @@ textarea.ant-picker-input > input {
|
|
|
460
494
|
display: inline-block;
|
|
461
495
|
width: 7px;
|
|
462
496
|
height: 7px;
|
|
463
|
-
border: 0 solid
|
|
497
|
+
border: 0 solid currentcolor;
|
|
464
498
|
border-width: 1.5px 0 0 1.5px;
|
|
465
499
|
content: '';
|
|
466
500
|
}
|
|
@@ -862,7 +896,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
|
|
|
862
896
|
background: transparent;
|
|
863
897
|
cursor: not-allowed;
|
|
864
898
|
}
|
|
865
|
-
/* stylelint-disable
|
|
899
|
+
/* stylelint-disable selector-type-no-unknown,selector-no-vendor-prefix */
|
|
866
900
|
_:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,
|
|
867
901
|
:root .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,
|
|
868
902
|
_:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell,
|
|
@@ -1183,9 +1217,6 @@ img {
|
|
|
1183
1217
|
vertical-align: middle;
|
|
1184
1218
|
border-style: none;
|
|
1185
1219
|
}
|
|
1186
|
-
svg:not(:root) {
|
|
1187
|
-
overflow: hidden;
|
|
1188
|
-
}
|
|
1189
1220
|
a,
|
|
1190
1221
|
area,
|
|
1191
1222
|
button,
|
|
@@ -1327,7 +1358,7 @@ mark {
|
|
|
1327
1358
|
text-align: center;
|
|
1328
1359
|
text-transform: none;
|
|
1329
1360
|
vertical-align: -0.125em;
|
|
1330
|
-
text-rendering:
|
|
1361
|
+
text-rendering: optimizelegibility;
|
|
1331
1362
|
-webkit-font-smoothing: antialiased;
|
|
1332
1363
|
-moz-osx-font-smoothing: grayscale;
|
|
1333
1364
|
}
|
|
@@ -1343,6 +1374,10 @@ mark {
|
|
|
1343
1374
|
.anticon .anticon-icon {
|
|
1344
1375
|
display: block;
|
|
1345
1376
|
}
|
|
1377
|
+
.anticon > .anticon {
|
|
1378
|
+
line-height: 0;
|
|
1379
|
+
vertical-align: 0;
|
|
1380
|
+
}
|
|
1346
1381
|
.anticon[tabindex] {
|
|
1347
1382
|
cursor: pointer;
|
|
1348
1383
|
}
|
|
@@ -2547,7 +2582,7 @@ html {
|
|
|
2547
2582
|
border-radius: 2px;
|
|
2548
2583
|
}
|
|
2549
2584
|
.ant-btn > a:only-child {
|
|
2550
|
-
color:
|
|
2585
|
+
color: currentcolor;
|
|
2551
2586
|
}
|
|
2552
2587
|
.ant-btn > a:only-child::after {
|
|
2553
2588
|
position: absolute;
|
|
@@ -2566,7 +2601,7 @@ html {
|
|
|
2566
2601
|
}
|
|
2567
2602
|
.ant-btn:hover > a:only-child,
|
|
2568
2603
|
.ant-btn:focus > a:only-child {
|
|
2569
|
-
color:
|
|
2604
|
+
color: currentcolor;
|
|
2570
2605
|
}
|
|
2571
2606
|
.ant-btn:hover > a:only-child::after,
|
|
2572
2607
|
.ant-btn:focus > a:only-child::after {
|
|
@@ -2584,7 +2619,7 @@ html {
|
|
|
2584
2619
|
background: #fff;
|
|
2585
2620
|
}
|
|
2586
2621
|
.ant-btn:active > a:only-child {
|
|
2587
|
-
color:
|
|
2622
|
+
color: currentcolor;
|
|
2588
2623
|
}
|
|
2589
2624
|
.ant-btn:active > a:only-child::after {
|
|
2590
2625
|
position: absolute;
|
|
@@ -2609,7 +2644,7 @@ html {
|
|
|
2609
2644
|
.ant-btn[disabled]:hover > a:only-child,
|
|
2610
2645
|
.ant-btn[disabled]:focus > a:only-child,
|
|
2611
2646
|
.ant-btn[disabled]:active > a:only-child {
|
|
2612
|
-
color:
|
|
2647
|
+
color: currentcolor;
|
|
2613
2648
|
}
|
|
2614
2649
|
.ant-btn[disabled] > a:only-child::after,
|
|
2615
2650
|
.ant-btn[disabled]:hover > a:only-child::after,
|
|
@@ -2640,7 +2675,7 @@ html {
|
|
|
2640
2675
|
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
|
|
2641
2676
|
}
|
|
2642
2677
|
.ant-btn-primary > a:only-child {
|
|
2643
|
-
color:
|
|
2678
|
+
color: currentcolor;
|
|
2644
2679
|
}
|
|
2645
2680
|
.ant-btn-primary > a:only-child::after {
|
|
2646
2681
|
position: absolute;
|
|
@@ -2659,7 +2694,7 @@ html {
|
|
|
2659
2694
|
}
|
|
2660
2695
|
.ant-btn-primary:hover > a:only-child,
|
|
2661
2696
|
.ant-btn-primary:focus > a:only-child {
|
|
2662
|
-
color:
|
|
2697
|
+
color: currentcolor;
|
|
2663
2698
|
}
|
|
2664
2699
|
.ant-btn-primary:hover > a:only-child::after,
|
|
2665
2700
|
.ant-btn-primary:focus > a:only-child::after {
|
|
@@ -2677,7 +2712,7 @@ html {
|
|
|
2677
2712
|
background: #096dd9;
|
|
2678
2713
|
}
|
|
2679
2714
|
.ant-btn-primary:active > a:only-child {
|
|
2680
|
-
color:
|
|
2715
|
+
color: currentcolor;
|
|
2681
2716
|
}
|
|
2682
2717
|
.ant-btn-primary:active > a:only-child::after {
|
|
2683
2718
|
position: absolute;
|
|
@@ -2702,7 +2737,7 @@ html {
|
|
|
2702
2737
|
.ant-btn-primary[disabled]:hover > a:only-child,
|
|
2703
2738
|
.ant-btn-primary[disabled]:focus > a:only-child,
|
|
2704
2739
|
.ant-btn-primary[disabled]:active > a:only-child {
|
|
2705
|
-
color:
|
|
2740
|
+
color: currentcolor;
|
|
2706
2741
|
}
|
|
2707
2742
|
.ant-btn-primary[disabled] > a:only-child::after,
|
|
2708
2743
|
.ant-btn-primary[disabled]:hover > a:only-child::after,
|
|
@@ -2743,7 +2778,7 @@ html {
|
|
|
2743
2778
|
background: transparent;
|
|
2744
2779
|
}
|
|
2745
2780
|
.ant-btn-ghost > a:only-child {
|
|
2746
|
-
color:
|
|
2781
|
+
color: currentcolor;
|
|
2747
2782
|
}
|
|
2748
2783
|
.ant-btn-ghost > a:only-child::after {
|
|
2749
2784
|
position: absolute;
|
|
@@ -2762,7 +2797,7 @@ html {
|
|
|
2762
2797
|
}
|
|
2763
2798
|
.ant-btn-ghost:hover > a:only-child,
|
|
2764
2799
|
.ant-btn-ghost:focus > a:only-child {
|
|
2765
|
-
color:
|
|
2800
|
+
color: currentcolor;
|
|
2766
2801
|
}
|
|
2767
2802
|
.ant-btn-ghost:hover > a:only-child::after,
|
|
2768
2803
|
.ant-btn-ghost:focus > a:only-child::after {
|
|
@@ -2780,7 +2815,7 @@ html {
|
|
|
2780
2815
|
background: transparent;
|
|
2781
2816
|
}
|
|
2782
2817
|
.ant-btn-ghost:active > a:only-child {
|
|
2783
|
-
color:
|
|
2818
|
+
color: currentcolor;
|
|
2784
2819
|
}
|
|
2785
2820
|
.ant-btn-ghost:active > a:only-child::after {
|
|
2786
2821
|
position: absolute;
|
|
@@ -2805,7 +2840,7 @@ html {
|
|
|
2805
2840
|
.ant-btn-ghost[disabled]:hover > a:only-child,
|
|
2806
2841
|
.ant-btn-ghost[disabled]:focus > a:only-child,
|
|
2807
2842
|
.ant-btn-ghost[disabled]:active > a:only-child {
|
|
2808
|
-
color:
|
|
2843
|
+
color: currentcolor;
|
|
2809
2844
|
}
|
|
2810
2845
|
.ant-btn-ghost[disabled] > a:only-child::after,
|
|
2811
2846
|
.ant-btn-ghost[disabled]:hover > a:only-child::after,
|
|
@@ -2826,7 +2861,7 @@ html {
|
|
|
2826
2861
|
border-style: dashed;
|
|
2827
2862
|
}
|
|
2828
2863
|
.ant-btn-dashed > a:only-child {
|
|
2829
|
-
color:
|
|
2864
|
+
color: currentcolor;
|
|
2830
2865
|
}
|
|
2831
2866
|
.ant-btn-dashed > a:only-child::after {
|
|
2832
2867
|
position: absolute;
|
|
@@ -2845,7 +2880,7 @@ html {
|
|
|
2845
2880
|
}
|
|
2846
2881
|
.ant-btn-dashed:hover > a:only-child,
|
|
2847
2882
|
.ant-btn-dashed:focus > a:only-child {
|
|
2848
|
-
color:
|
|
2883
|
+
color: currentcolor;
|
|
2849
2884
|
}
|
|
2850
2885
|
.ant-btn-dashed:hover > a:only-child::after,
|
|
2851
2886
|
.ant-btn-dashed:focus > a:only-child::after {
|
|
@@ -2863,7 +2898,7 @@ html {
|
|
|
2863
2898
|
background: #fff;
|
|
2864
2899
|
}
|
|
2865
2900
|
.ant-btn-dashed:active > a:only-child {
|
|
2866
|
-
color:
|
|
2901
|
+
color: currentcolor;
|
|
2867
2902
|
}
|
|
2868
2903
|
.ant-btn-dashed:active > a:only-child::after {
|
|
2869
2904
|
position: absolute;
|
|
@@ -2888,7 +2923,7 @@ html {
|
|
|
2888
2923
|
.ant-btn-dashed[disabled]:hover > a:only-child,
|
|
2889
2924
|
.ant-btn-dashed[disabled]:focus > a:only-child,
|
|
2890
2925
|
.ant-btn-dashed[disabled]:active > a:only-child {
|
|
2891
|
-
color:
|
|
2926
|
+
color: currentcolor;
|
|
2892
2927
|
}
|
|
2893
2928
|
.ant-btn-dashed[disabled] > a:only-child::after,
|
|
2894
2929
|
.ant-btn-dashed[disabled]:hover > a:only-child::after,
|
|
@@ -2910,7 +2945,7 @@ html {
|
|
|
2910
2945
|
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
|
|
2911
2946
|
}
|
|
2912
2947
|
.ant-btn-danger > a:only-child {
|
|
2913
|
-
color:
|
|
2948
|
+
color: currentcolor;
|
|
2914
2949
|
}
|
|
2915
2950
|
.ant-btn-danger > a:only-child::after {
|
|
2916
2951
|
position: absolute;
|
|
@@ -2929,7 +2964,7 @@ html {
|
|
|
2929
2964
|
}
|
|
2930
2965
|
.ant-btn-danger:hover > a:only-child,
|
|
2931
2966
|
.ant-btn-danger:focus > a:only-child {
|
|
2932
|
-
color:
|
|
2967
|
+
color: currentcolor;
|
|
2933
2968
|
}
|
|
2934
2969
|
.ant-btn-danger:hover > a:only-child::after,
|
|
2935
2970
|
.ant-btn-danger:focus > a:only-child::after {
|
|
@@ -2947,7 +2982,7 @@ html {
|
|
|
2947
2982
|
background: #d9363e;
|
|
2948
2983
|
}
|
|
2949
2984
|
.ant-btn-danger:active > a:only-child {
|
|
2950
|
-
color:
|
|
2985
|
+
color: currentcolor;
|
|
2951
2986
|
}
|
|
2952
2987
|
.ant-btn-danger:active > a:only-child::after {
|
|
2953
2988
|
position: absolute;
|
|
@@ -2972,7 +3007,7 @@ html {
|
|
|
2972
3007
|
.ant-btn-danger[disabled]:hover > a:only-child,
|
|
2973
3008
|
.ant-btn-danger[disabled]:focus > a:only-child,
|
|
2974
3009
|
.ant-btn-danger[disabled]:active > a:only-child {
|
|
2975
|
-
color:
|
|
3010
|
+
color: currentcolor;
|
|
2976
3011
|
}
|
|
2977
3012
|
.ant-btn-danger[disabled] > a:only-child::after,
|
|
2978
3013
|
.ant-btn-danger[disabled]:hover > a:only-child::after,
|
|
@@ -2993,7 +3028,7 @@ html {
|
|
|
2993
3028
|
box-shadow: none;
|
|
2994
3029
|
}
|
|
2995
3030
|
.ant-btn-link > a:only-child {
|
|
2996
|
-
color:
|
|
3031
|
+
color: currentcolor;
|
|
2997
3032
|
}
|
|
2998
3033
|
.ant-btn-link > a:only-child::after {
|
|
2999
3034
|
position: absolute;
|
|
@@ -3012,7 +3047,7 @@ html {
|
|
|
3012
3047
|
}
|
|
3013
3048
|
.ant-btn-link:hover > a:only-child,
|
|
3014
3049
|
.ant-btn-link:focus > a:only-child {
|
|
3015
|
-
color:
|
|
3050
|
+
color: currentcolor;
|
|
3016
3051
|
}
|
|
3017
3052
|
.ant-btn-link:hover > a:only-child::after,
|
|
3018
3053
|
.ant-btn-link:focus > a:only-child::after {
|
|
@@ -3030,7 +3065,7 @@ html {
|
|
|
3030
3065
|
background: transparent;
|
|
3031
3066
|
}
|
|
3032
3067
|
.ant-btn-link:active > a:only-child {
|
|
3033
|
-
color:
|
|
3068
|
+
color: currentcolor;
|
|
3034
3069
|
}
|
|
3035
3070
|
.ant-btn-link:active > a:only-child::after {
|
|
3036
3071
|
position: absolute;
|
|
@@ -3055,7 +3090,7 @@ html {
|
|
|
3055
3090
|
.ant-btn-link[disabled]:hover > a:only-child,
|
|
3056
3091
|
.ant-btn-link[disabled]:focus > a:only-child,
|
|
3057
3092
|
.ant-btn-link[disabled]:active > a:only-child {
|
|
3058
|
-
color:
|
|
3093
|
+
color: currentcolor;
|
|
3059
3094
|
}
|
|
3060
3095
|
.ant-btn-link[disabled] > a:only-child::after,
|
|
3061
3096
|
.ant-btn-link[disabled]:hover > a:only-child::after,
|
|
@@ -3091,7 +3126,7 @@ html {
|
|
|
3091
3126
|
.ant-btn-link[disabled]:hover > a:only-child,
|
|
3092
3127
|
.ant-btn-link[disabled]:focus > a:only-child,
|
|
3093
3128
|
.ant-btn-link[disabled]:active > a:only-child {
|
|
3094
|
-
color:
|
|
3129
|
+
color: currentcolor;
|
|
3095
3130
|
}
|
|
3096
3131
|
.ant-btn-link[disabled] > a:only-child::after,
|
|
3097
3132
|
.ant-btn-link[disabled]:hover > a:only-child::after,
|
|
@@ -3112,7 +3147,7 @@ html {
|
|
|
3112
3147
|
box-shadow: none;
|
|
3113
3148
|
}
|
|
3114
3149
|
.ant-btn-text > a:only-child {
|
|
3115
|
-
color:
|
|
3150
|
+
color: currentcolor;
|
|
3116
3151
|
}
|
|
3117
3152
|
.ant-btn-text > a:only-child::after {
|
|
3118
3153
|
position: absolute;
|
|
@@ -3131,7 +3166,7 @@ html {
|
|
|
3131
3166
|
}
|
|
3132
3167
|
.ant-btn-text:hover > a:only-child,
|
|
3133
3168
|
.ant-btn-text:focus > a:only-child {
|
|
3134
|
-
color:
|
|
3169
|
+
color: currentcolor;
|
|
3135
3170
|
}
|
|
3136
3171
|
.ant-btn-text:hover > a:only-child::after,
|
|
3137
3172
|
.ant-btn-text:focus > a:only-child::after {
|
|
@@ -3149,7 +3184,7 @@ html {
|
|
|
3149
3184
|
background: transparent;
|
|
3150
3185
|
}
|
|
3151
3186
|
.ant-btn-text:active > a:only-child {
|
|
3152
|
-
color:
|
|
3187
|
+
color: currentcolor;
|
|
3153
3188
|
}
|
|
3154
3189
|
.ant-btn-text:active > a:only-child::after {
|
|
3155
3190
|
position: absolute;
|
|
@@ -3174,7 +3209,7 @@ html {
|
|
|
3174
3209
|
.ant-btn-text[disabled]:hover > a:only-child,
|
|
3175
3210
|
.ant-btn-text[disabled]:focus > a:only-child,
|
|
3176
3211
|
.ant-btn-text[disabled]:active > a:only-child {
|
|
3177
|
-
color:
|
|
3212
|
+
color: currentcolor;
|
|
3178
3213
|
}
|
|
3179
3214
|
.ant-btn-text[disabled] > a:only-child::after,
|
|
3180
3215
|
.ant-btn-text[disabled]:hover > a:only-child::after,
|
|
@@ -3213,7 +3248,7 @@ html {
|
|
|
3213
3248
|
.ant-btn-text[disabled]:hover > a:only-child,
|
|
3214
3249
|
.ant-btn-text[disabled]:focus > a:only-child,
|
|
3215
3250
|
.ant-btn-text[disabled]:active > a:only-child {
|
|
3216
|
-
color:
|
|
3251
|
+
color: currentcolor;
|
|
3217
3252
|
}
|
|
3218
3253
|
.ant-btn-text[disabled] > a:only-child::after,
|
|
3219
3254
|
.ant-btn-text[disabled]:hover > a:only-child::after,
|
|
@@ -3233,7 +3268,7 @@ html {
|
|
|
3233
3268
|
background: #fff;
|
|
3234
3269
|
}
|
|
3235
3270
|
.ant-btn-dangerous > a:only-child {
|
|
3236
|
-
color:
|
|
3271
|
+
color: currentcolor;
|
|
3237
3272
|
}
|
|
3238
3273
|
.ant-btn-dangerous > a:only-child::after {
|
|
3239
3274
|
position: absolute;
|
|
@@ -3252,7 +3287,7 @@ html {
|
|
|
3252
3287
|
}
|
|
3253
3288
|
.ant-btn-dangerous:hover > a:only-child,
|
|
3254
3289
|
.ant-btn-dangerous:focus > a:only-child {
|
|
3255
|
-
color:
|
|
3290
|
+
color: currentcolor;
|
|
3256
3291
|
}
|
|
3257
3292
|
.ant-btn-dangerous:hover > a:only-child::after,
|
|
3258
3293
|
.ant-btn-dangerous:focus > a:only-child::after {
|
|
@@ -3270,7 +3305,7 @@ html {
|
|
|
3270
3305
|
background: #fff;
|
|
3271
3306
|
}
|
|
3272
3307
|
.ant-btn-dangerous:active > a:only-child {
|
|
3273
|
-
color:
|
|
3308
|
+
color: currentcolor;
|
|
3274
3309
|
}
|
|
3275
3310
|
.ant-btn-dangerous:active > a:only-child::after {
|
|
3276
3311
|
position: absolute;
|
|
@@ -3295,7 +3330,7 @@ html {
|
|
|
3295
3330
|
.ant-btn-dangerous[disabled]:hover > a:only-child,
|
|
3296
3331
|
.ant-btn-dangerous[disabled]:focus > a:only-child,
|
|
3297
3332
|
.ant-btn-dangerous[disabled]:active > a:only-child {
|
|
3298
|
-
color:
|
|
3333
|
+
color: currentcolor;
|
|
3299
3334
|
}
|
|
3300
3335
|
.ant-btn-dangerous[disabled] > a:only-child::after,
|
|
3301
3336
|
.ant-btn-dangerous[disabled]:hover > a:only-child::after,
|
|
@@ -3317,7 +3352,7 @@ html {
|
|
|
3317
3352
|
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
|
|
3318
3353
|
}
|
|
3319
3354
|
.ant-btn-dangerous.ant-btn-primary > a:only-child {
|
|
3320
|
-
color:
|
|
3355
|
+
color: currentcolor;
|
|
3321
3356
|
}
|
|
3322
3357
|
.ant-btn-dangerous.ant-btn-primary > a:only-child::after {
|
|
3323
3358
|
position: absolute;
|
|
@@ -3336,7 +3371,7 @@ html {
|
|
|
3336
3371
|
}
|
|
3337
3372
|
.ant-btn-dangerous.ant-btn-primary:hover > a:only-child,
|
|
3338
3373
|
.ant-btn-dangerous.ant-btn-primary:focus > a:only-child {
|
|
3339
|
-
color:
|
|
3374
|
+
color: currentcolor;
|
|
3340
3375
|
}
|
|
3341
3376
|
.ant-btn-dangerous.ant-btn-primary:hover > a:only-child::after,
|
|
3342
3377
|
.ant-btn-dangerous.ant-btn-primary:focus > a:only-child::after {
|
|
@@ -3354,7 +3389,7 @@ html {
|
|
|
3354
3389
|
background: #d9363e;
|
|
3355
3390
|
}
|
|
3356
3391
|
.ant-btn-dangerous.ant-btn-primary:active > a:only-child {
|
|
3357
|
-
color:
|
|
3392
|
+
color: currentcolor;
|
|
3358
3393
|
}
|
|
3359
3394
|
.ant-btn-dangerous.ant-btn-primary:active > a:only-child::after {
|
|
3360
3395
|
position: absolute;
|
|
@@ -3379,7 +3414,7 @@ html {
|
|
|
3379
3414
|
.ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child,
|
|
3380
3415
|
.ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child,
|
|
3381
3416
|
.ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child {
|
|
3382
|
-
color:
|
|
3417
|
+
color: currentcolor;
|
|
3383
3418
|
}
|
|
3384
3419
|
.ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child::after,
|
|
3385
3420
|
.ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child::after,
|
|
@@ -3400,7 +3435,7 @@ html {
|
|
|
3400
3435
|
box-shadow: none;
|
|
3401
3436
|
}
|
|
3402
3437
|
.ant-btn-dangerous.ant-btn-link > a:only-child {
|
|
3403
|
-
color:
|
|
3438
|
+
color: currentcolor;
|
|
3404
3439
|
}
|
|
3405
3440
|
.ant-btn-dangerous.ant-btn-link > a:only-child::after {
|
|
3406
3441
|
position: absolute;
|
|
@@ -3419,7 +3454,7 @@ html {
|
|
|
3419
3454
|
}
|
|
3420
3455
|
.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
|
|
3421
3456
|
.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
|
|
3422
|
-
color:
|
|
3457
|
+
color: currentcolor;
|
|
3423
3458
|
}
|
|
3424
3459
|
.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
|
|
3425
3460
|
.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
|
|
@@ -3437,7 +3472,7 @@ html {
|
|
|
3437
3472
|
background: transparent;
|
|
3438
3473
|
}
|
|
3439
3474
|
.ant-btn-dangerous.ant-btn-link:active > a:only-child {
|
|
3440
|
-
color:
|
|
3475
|
+
color: currentcolor;
|
|
3441
3476
|
}
|
|
3442
3477
|
.ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
|
|
3443
3478
|
position: absolute;
|
|
@@ -3462,7 +3497,7 @@ html {
|
|
|
3462
3497
|
.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
|
|
3463
3498
|
.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
|
|
3464
3499
|
.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
|
|
3465
|
-
color:
|
|
3500
|
+
color: currentcolor;
|
|
3466
3501
|
}
|
|
3467
3502
|
.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
|
|
3468
3503
|
.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
|
|
@@ -3484,7 +3519,7 @@ html {
|
|
|
3484
3519
|
}
|
|
3485
3520
|
.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
|
|
3486
3521
|
.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
|
|
3487
|
-
color:
|
|
3522
|
+
color: currentcolor;
|
|
3488
3523
|
}
|
|
3489
3524
|
.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
|
|
3490
3525
|
.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
|
|
@@ -3502,7 +3537,7 @@ html {
|
|
|
3502
3537
|
background: transparent;
|
|
3503
3538
|
}
|
|
3504
3539
|
.ant-btn-dangerous.ant-btn-link:active > a:only-child {
|
|
3505
|
-
color:
|
|
3540
|
+
color: currentcolor;
|
|
3506
3541
|
}
|
|
3507
3542
|
.ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
|
|
3508
3543
|
position: absolute;
|
|
@@ -3527,7 +3562,7 @@ html {
|
|
|
3527
3562
|
.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
|
|
3528
3563
|
.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
|
|
3529
3564
|
.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
|
|
3530
|
-
color:
|
|
3565
|
+
color: currentcolor;
|
|
3531
3566
|
}
|
|
3532
3567
|
.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
|
|
3533
3568
|
.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
|
|
@@ -3548,7 +3583,7 @@ html {
|
|
|
3548
3583
|
box-shadow: none;
|
|
3549
3584
|
}
|
|
3550
3585
|
.ant-btn-dangerous.ant-btn-text > a:only-child {
|
|
3551
|
-
color:
|
|
3586
|
+
color: currentcolor;
|
|
3552
3587
|
}
|
|
3553
3588
|
.ant-btn-dangerous.ant-btn-text > a:only-child::after {
|
|
3554
3589
|
position: absolute;
|
|
@@ -3567,7 +3602,7 @@ html {
|
|
|
3567
3602
|
}
|
|
3568
3603
|
.ant-btn-dangerous.ant-btn-text:hover > a:only-child,
|
|
3569
3604
|
.ant-btn-dangerous.ant-btn-text:focus > a:only-child {
|
|
3570
|
-
color:
|
|
3605
|
+
color: currentcolor;
|
|
3571
3606
|
}
|
|
3572
3607
|
.ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
|
|
3573
3608
|
.ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
|
|
@@ -3585,7 +3620,7 @@ html {
|
|
|
3585
3620
|
background: transparent;
|
|
3586
3621
|
}
|
|
3587
3622
|
.ant-btn-dangerous.ant-btn-text:active > a:only-child {
|
|
3588
|
-
color:
|
|
3623
|
+
color: currentcolor;
|
|
3589
3624
|
}
|
|
3590
3625
|
.ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
|
|
3591
3626
|
position: absolute;
|
|
@@ -3610,7 +3645,7 @@ html {
|
|
|
3610
3645
|
.ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
|
|
3611
3646
|
.ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
|
|
3612
3647
|
.ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
|
|
3613
|
-
color:
|
|
3648
|
+
color: currentcolor;
|
|
3614
3649
|
}
|
|
3615
3650
|
.ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
|
|
3616
3651
|
.ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
|
|
@@ -3632,7 +3667,7 @@ html {
|
|
|
3632
3667
|
}
|
|
3633
3668
|
.ant-btn-dangerous.ant-btn-text:hover > a:only-child,
|
|
3634
3669
|
.ant-btn-dangerous.ant-btn-text:focus > a:only-child {
|
|
3635
|
-
color:
|
|
3670
|
+
color: currentcolor;
|
|
3636
3671
|
}
|
|
3637
3672
|
.ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
|
|
3638
3673
|
.ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
|
|
@@ -3650,7 +3685,7 @@ html {
|
|
|
3650
3685
|
background: rgba(0, 0, 0, 0.028);
|
|
3651
3686
|
}
|
|
3652
3687
|
.ant-btn-dangerous.ant-btn-text:active > a:only-child {
|
|
3653
|
-
color:
|
|
3688
|
+
color: currentcolor;
|
|
3654
3689
|
}
|
|
3655
3690
|
.ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
|
|
3656
3691
|
position: absolute;
|
|
@@ -3675,7 +3710,7 @@ html {
|
|
|
3675
3710
|
.ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
|
|
3676
3711
|
.ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
|
|
3677
3712
|
.ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
|
|
3678
|
-
color:
|
|
3713
|
+
color: currentcolor;
|
|
3679
3714
|
}
|
|
3680
3715
|
.ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
|
|
3681
3716
|
.ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
|
|
@@ -3786,7 +3821,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
3786
3821
|
}
|
|
3787
3822
|
.ant-btn .anticon.anticon-plus > svg,
|
|
3788
3823
|
.ant-btn .anticon.anticon-minus > svg {
|
|
3789
|
-
shape-rendering:
|
|
3824
|
+
shape-rendering: optimizespeed;
|
|
3790
3825
|
}
|
|
3791
3826
|
.ant-btn.ant-btn-loading {
|
|
3792
3827
|
position: relative;
|
|
@@ -3796,7 +3831,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
3796
3831
|
display: block;
|
|
3797
3832
|
}
|
|
3798
3833
|
.ant-btn > .ant-btn-loading-icon {
|
|
3799
|
-
transition:
|
|
3834
|
+
transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
3800
3835
|
}
|
|
3801
3836
|
.ant-btn > .ant-btn-loading-icon .anticon {
|
|
3802
3837
|
padding-right: 8px;
|
|
@@ -3831,36 +3866,6 @@ a.ant-btn-icon-only > .anticon {
|
|
|
3831
3866
|
.ant-btn-group .ant-btn-icon-only {
|
|
3832
3867
|
font-size: 14px;
|
|
3833
3868
|
}
|
|
3834
|
-
.ant-btn-group-lg > .ant-btn,
|
|
3835
|
-
.ant-btn-group-lg > span > .ant-btn {
|
|
3836
|
-
height: 40px;
|
|
3837
|
-
padding: 6.4px 15px;
|
|
3838
|
-
font-size: 16px;
|
|
3839
|
-
border-radius: 0;
|
|
3840
|
-
}
|
|
3841
|
-
.ant-btn-group-lg .ant-btn.ant-btn-icon-only {
|
|
3842
|
-
width: 40px;
|
|
3843
|
-
height: 40px;
|
|
3844
|
-
padding-right: 0;
|
|
3845
|
-
padding-left: 0;
|
|
3846
|
-
}
|
|
3847
|
-
.ant-btn-group-sm > .ant-btn,
|
|
3848
|
-
.ant-btn-group-sm > span > .ant-btn {
|
|
3849
|
-
height: 24px;
|
|
3850
|
-
padding: 0px 7px;
|
|
3851
|
-
font-size: 14px;
|
|
3852
|
-
border-radius: 0;
|
|
3853
|
-
}
|
|
3854
|
-
.ant-btn-group-sm > .ant-btn > .anticon,
|
|
3855
|
-
.ant-btn-group-sm > span > .ant-btn > .anticon {
|
|
3856
|
-
font-size: 14px;
|
|
3857
|
-
}
|
|
3858
|
-
.ant-btn-group-sm .ant-btn.ant-btn-icon-only {
|
|
3859
|
-
width: 24px;
|
|
3860
|
-
height: 24px;
|
|
3861
|
-
padding-right: 0;
|
|
3862
|
-
padding-left: 0;
|
|
3863
|
-
}
|
|
3864
3869
|
.ant-btn-group .ant-btn + .ant-btn,
|
|
3865
3870
|
.ant-btn + .ant-btn-group,
|
|
3866
3871
|
.ant-btn-group span + .ant-btn,
|
|
@@ -4002,7 +4007,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4002
4007
|
text-shadow: none;
|
|
4003
4008
|
}
|
|
4004
4009
|
.ant-btn-background-ghost.ant-btn-primary > a:only-child {
|
|
4005
|
-
color:
|
|
4010
|
+
color: currentcolor;
|
|
4006
4011
|
}
|
|
4007
4012
|
.ant-btn-background-ghost.ant-btn-primary > a:only-child::after {
|
|
4008
4013
|
position: absolute;
|
|
@@ -4020,7 +4025,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4020
4025
|
}
|
|
4021
4026
|
.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
|
|
4022
4027
|
.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
|
|
4023
|
-
color:
|
|
4028
|
+
color: currentcolor;
|
|
4024
4029
|
}
|
|
4025
4030
|
.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after,
|
|
4026
4031
|
.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after {
|
|
@@ -4037,7 +4042,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4037
4042
|
border-color: #096dd9;
|
|
4038
4043
|
}
|
|
4039
4044
|
.ant-btn-background-ghost.ant-btn-primary:active > a:only-child {
|
|
4040
|
-
color:
|
|
4045
|
+
color: currentcolor;
|
|
4041
4046
|
}
|
|
4042
4047
|
.ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after {
|
|
4043
4048
|
position: absolute;
|
|
@@ -4062,7 +4067,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4062
4067
|
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
|
|
4063
4068
|
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
|
|
4064
4069
|
.ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child {
|
|
4065
|
-
color:
|
|
4070
|
+
color: currentcolor;
|
|
4066
4071
|
}
|
|
4067
4072
|
.ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after,
|
|
4068
4073
|
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child::after,
|
|
@@ -4082,7 +4087,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4082
4087
|
text-shadow: none;
|
|
4083
4088
|
}
|
|
4084
4089
|
.ant-btn-background-ghost.ant-btn-danger > a:only-child {
|
|
4085
|
-
color:
|
|
4090
|
+
color: currentcolor;
|
|
4086
4091
|
}
|
|
4087
4092
|
.ant-btn-background-ghost.ant-btn-danger > a:only-child::after {
|
|
4088
4093
|
position: absolute;
|
|
@@ -4100,7 +4105,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4100
4105
|
}
|
|
4101
4106
|
.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child,
|
|
4102
4107
|
.ant-btn-background-ghost.ant-btn-danger:focus > a:only-child {
|
|
4103
|
-
color:
|
|
4108
|
+
color: currentcolor;
|
|
4104
4109
|
}
|
|
4105
4110
|
.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after,
|
|
4106
4111
|
.ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after {
|
|
@@ -4117,7 +4122,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4117
4122
|
border-color: #d9363e;
|
|
4118
4123
|
}
|
|
4119
4124
|
.ant-btn-background-ghost.ant-btn-danger:active > a:only-child {
|
|
4120
|
-
color:
|
|
4125
|
+
color: currentcolor;
|
|
4121
4126
|
}
|
|
4122
4127
|
.ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after {
|
|
4123
4128
|
position: absolute;
|
|
@@ -4142,7 +4147,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4142
4147
|
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child,
|
|
4143
4148
|
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child,
|
|
4144
4149
|
.ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child {
|
|
4145
|
-
color:
|
|
4150
|
+
color: currentcolor;
|
|
4146
4151
|
}
|
|
4147
4152
|
.ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after,
|
|
4148
4153
|
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child::after,
|
|
@@ -4162,7 +4167,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4162
4167
|
text-shadow: none;
|
|
4163
4168
|
}
|
|
4164
4169
|
.ant-btn-background-ghost.ant-btn-dangerous > a:only-child {
|
|
4165
|
-
color:
|
|
4170
|
+
color: currentcolor;
|
|
4166
4171
|
}
|
|
4167
4172
|
.ant-btn-background-ghost.ant-btn-dangerous > a:only-child::after {
|
|
4168
4173
|
position: absolute;
|
|
@@ -4180,7 +4185,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4180
4185
|
}
|
|
4181
4186
|
.ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child,
|
|
4182
4187
|
.ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child {
|
|
4183
|
-
color:
|
|
4188
|
+
color: currentcolor;
|
|
4184
4189
|
}
|
|
4185
4190
|
.ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child::after,
|
|
4186
4191
|
.ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child::after {
|
|
@@ -4197,7 +4202,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4197
4202
|
border-color: #d9363e;
|
|
4198
4203
|
}
|
|
4199
4204
|
.ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child {
|
|
4200
|
-
color:
|
|
4205
|
+
color: currentcolor;
|
|
4201
4206
|
}
|
|
4202
4207
|
.ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child::after {
|
|
4203
4208
|
position: absolute;
|
|
@@ -4222,7 +4227,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4222
4227
|
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child,
|
|
4223
4228
|
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child,
|
|
4224
4229
|
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child {
|
|
4225
|
-
color:
|
|
4230
|
+
color: currentcolor;
|
|
4226
4231
|
}
|
|
4227
4232
|
.ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child::after,
|
|
4228
4233
|
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child::after,
|
|
@@ -4242,7 +4247,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4242
4247
|
text-shadow: none;
|
|
4243
4248
|
}
|
|
4244
4249
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child {
|
|
4245
|
-
color:
|
|
4250
|
+
color: currentcolor;
|
|
4246
4251
|
}
|
|
4247
4252
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child::after {
|
|
4248
4253
|
position: absolute;
|
|
@@ -4260,7 +4265,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4260
4265
|
}
|
|
4261
4266
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
|
|
4262
4267
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
|
|
4263
|
-
color:
|
|
4268
|
+
color: currentcolor;
|
|
4264
4269
|
}
|
|
4265
4270
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
|
|
4266
4271
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
|
|
@@ -4277,7 +4282,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4277
4282
|
border-color: transparent;
|
|
4278
4283
|
}
|
|
4279
4284
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child {
|
|
4280
|
-
color:
|
|
4285
|
+
color: currentcolor;
|
|
4281
4286
|
}
|
|
4282
4287
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
|
|
4283
4288
|
position: absolute;
|
|
@@ -4302,7 +4307,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4302
4307
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
|
|
4303
4308
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
|
|
4304
4309
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
|
|
4305
|
-
color:
|
|
4310
|
+
color: currentcolor;
|
|
4306
4311
|
}
|
|
4307
4312
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
|
|
4308
4313
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
|
|
@@ -4323,7 +4328,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
4323
4328
|
margin-right: -0.34em;
|
|
4324
4329
|
letter-spacing: 0.34em;
|
|
4325
4330
|
}
|
|
4326
|
-
.ant-btn-block {
|
|
4331
|
+
.ant-btn.ant-btn-block {
|
|
4327
4332
|
width: 100%;
|
|
4328
4333
|
}
|
|
4329
4334
|
.ant-btn:empty {
|