|
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
|
@primary-color: #1890ff;
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
.bezierEasingMixin() {
@functions: ~`(function() {
var NEWTON_ITERATIONS = 4;
var NEWTON_MIN_SLOPE = 0.001;
var SUBDIVISION_PRECISION = 0.0000001;
var SUBDIVISION_MAX_ITERATIONS = 10;
var kSplineTableSize = 11;
var kSampleStepSize = 1.0 / (kSplineTableSize - 1.0);
var float32ArraySupported = typeof Float32Array === 'function';
function A (aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; }
function B (aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1; }
function C (aA1) { return 3.0 * aA1; }
// Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2.
function calcBezier (aT, aA1, aA2) { return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT; }
// Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2.
function getSlope (aT, aA1, aA2) { return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1); }
function binarySubdivide (aX, aA, aB, mX1, mX2) {
var currentX, currentT, i = 0;
do {
currentT = aA + (aB - aA) / 2.0;
currentX = calcBezier(currentT, mX1, mX2) - aX;
if (currentX > 0.0) {
aB = currentT;
} else {
aA = currentT;
}
} while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS);
return currentT;
}
function newtonRaphsonIterate (aX, aGuessT, mX1, mX2) {
for (var i = 0; i < NEWTON_ITERATIONS; ++i) {
var currentSlope = getSlope(aGuessT, mX1, mX2);
if (currentSlope === 0.0) {
return aGuessT;
}
var currentX = calcBezier(aGuessT, mX1, mX2) - aX;
aGuessT -= currentX / currentSlope;
}
return aGuessT;
}
var BezierEasing = function (mX1, mY1, mX2, mY2) {
if (!(0 <= mX1 && mX1 <= 1 && 0 <= mX2 && mX2 <= 1)) {
throw new Error('bezier x values must be in [0, 1] range');
}
// Precompute samples table
var sampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize);
if (mX1 !== mY1 || mX2 !== mY2) {
for (var i = 0; i < kSplineTableSize; ++i) {
sampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2);
}
}
function getTForX (aX) {
var intervalStart = 0.0;
var currentSample = 1;
var lastSample = kSplineTableSize - 1;
for (; currentSample !== lastSample && sampleValues[currentSample] <= aX; ++currentSample) {
intervalStart += kSampleStepSize;
}
--currentSample;
// Interpolate to provide an initial guess for t
var dist = (aX - sampleValues[currentSample]) / (sampleValues[currentSample + 1] - sampleValues[currentSample]);
var guessForT = intervalStart + dist * kSampleStepSize;
var initialSlope = getSlope(guessForT, mX1, mX2);
if (initialSlope >= NEWTON_MIN_SLOPE) {
return newtonRaphsonIterate(aX, guessForT, mX1, mX2);
} else if (initialSlope === 0.0) {
return guessForT;
} else {
return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize, mX1, mX2);
}
}
return function BezierEasing (x) {
if (mX1 === mY1 && mX2 === mY2) {
return x; // linear
}
// Because JavaScript number are imprecise, we should guarantee the extremes are right.
if (x === 0) {
return 0;
}
if (x === 1) {
return 1;
}
return calcBezier(getTForX(x), mY1, mY2);
};
};
this.colorEasing = BezierEasing(0.26, 0.09, 0.37, 0.18);
// less 3 requires a return
return '';
})()`;
}
|
|
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
|
// It is hacky way to make this function will be compiled preferentially by less
// resolve error: `ReferenceError: colorPalette is not defined`
// https://github.com/ant-design/ant-motion/issues/44
.bezierEasingMixin();
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.tinyColorMixin() {
@functions: ~`(function() {
// TinyColor v1.4.1
// https://github.com/bgrins/TinyColor
// 2016-07-07, Brian Grinstead, MIT License
var trimLeft = /^\s+/,
trimRight = /\s+$/,
tinyCounter = 0,
mathRound = Math.round,
mathMin = Math.min,
mathMax = Math.max,
mathRandom = Math.random;
function tinycolor (color, opts) {
color = (color) ? color : '';
opts = opts || { };
// If input is already a tinycolor, return itself
if (color instanceof tinycolor) {
return color;
}
// If we are called as a function, call using new instead
if (!(this instanceof tinycolor)) {
return new tinycolor(color, opts);
}
var rgb = inputToRGB(color);
this._originalInput = color,
this._r = rgb.r,
this._g = rgb.g,
this._b = rgb.b,
this._a = rgb.a,
this._roundA = mathRound(100*this._a) / 100,
this._format = opts.format || rgb.format;
this._gradientType = opts.gradientType;
// Don't let the range of [0,255] come back in [0,1].
// Potentially lose a little bit of precision here, but will fix issues where
// .5 gets interpreted as half of the total, instead of half of 1
// If it was supposed to be 128, this was already taken care of by inputToRgb
if (this._r < 1) { this._r = mathRound(this._r); }
if (this._g < 1) { this._g = mathRound(this._g); }
if (this._b < 1) { this._b = mathRound(this._b); }
this._ok = rgb.ok;
this._tc_id = tinyCounter++;
}
tinycolor.prototype = {
isDark: function() {
return this.getBrightness() < 128;
},
isLight: function() {
return !this.isDark();
},
isValid: function() {
return this._ok;
},
getOriginalInput: function() {
return this._originalInput;
},
getFormat: function() {
return this._format;
},
getAlpha: function() {
return this._a;
},
getBrightness: function() {
//http://www.w3.org/TR/AERT#color-contrast
var rgb = this.toRgb();
return (rgb.r * 299 + rgb.g * 587 + rgb.b * 114) / 1000;
},
getLuminance: function() {
//http://www.w3.org/TR/2008/REC-WCAG20-20081211/#relativeluminancedef
var rgb = this.toRgb();
var RsRGB, GsRGB, BsRGB, R, G, B;
RsRGB = rgb.r/255;
GsRGB = rgb.g/255;
BsRGB = rgb.b/255;
if (RsRGB <= 0.03928) {R = RsRGB / 12.92;} else {R = Math.pow(((RsRGB + 0.055) / 1.055), 2.4);}
if (GsRGB <= 0.03928) {G = GsRGB / 12.92;} else {G = Math.pow(((GsRGB + 0.055) / 1.055), 2.4);}
if (BsRGB <= 0.03928) {B = BsRGB / 12.92;} else {B = Math.pow(((BsRGB + 0.055) / 1.055), 2.4);}
return (0.2126 * R) + (0.7152 * G) + (0.0722 * B);
},
setAlpha: function(value) {
this._a = boundAlpha(value);
this._roundA = mathRound(100*this._a) / 100;
return this;
},
toHsv: function() {
var hsv = rgbToHsv(this._r, this._g, this._b);
return { h: hsv.h * 360, s: hsv.s, v: hsv.v, a: this._a };
},
toHsvString: function() {
var hsv = rgbToHsv(this._r, this._g, this._b);
var h = mathRound(hsv.h * 360), s = mathRound(hsv.s * 100), v = mathRound(hsv.v * 100);
return (this._a == 1) ?
"hsv(" + h + ", " + s + "%, " + v + "%)" :
"hsva(" + h + ", " + s + "%, " + v + "%, "+ this._roundA + ")";
},
toHsl: function() {
var hsl = rgbToHsl(this._r, this._g, this._b);
return { h: hsl.h * 360, s: hsl.s, l: hsl.l, a: this._a };
},
toHslString: function() {
var hsl = rgbToHsl(this._r, this._g, this._b);
var h = mathRound(hsl.h * 360), s = mathRound(hsl.s * 100), l = mathRound(hsl.l * 100);
return (this._a == 1) ?
"hsl(" + h + ", " + s + "%, " + l + "%)" :
"hsla(" + h + ", " + s + "%, " + l + "%, "+ this._roundA + ")";
},
toHex: function(allow3Char) {
return rgbToHex(this._r, this._g, this._b, allow3Char);
},
toHexString: function(allow3Char) {
return '#' + this.toHex(allow3Char);
},
toHex8: function(allow4Char) {
return rgbaToHex(this._r, this._g, this._b, this._a, allow4Char);
},
toHex8String: function(allow4Char) {
return '#' + this.toHex8(allow4Char);
},
toRgb: function() {
return { r: mathRound(this._r), g: mathRound(this._g), b: mathRound(this._b), a: this._a };
},
toRgbString: function() {
return (this._a == 1) ?
"rgb(" + mathRound(this._r) + ", " + mathRound(this._g) + ", " + mathRound(this._b) + ")" :
"rgba(" + mathRound(this._r) + ", " + mathRound(this._g) + ", " + mathRound(this._b) + ", " + this._roundA + ")";
},
toPercentageRgb: function() {
return { r: mathRound(bound01(this._r, 255) * 100) + "%", g: mathRound(bound01(this._g, 255) * 100) + "%", b: mathRound(bound01(this._b, 255) * 100) + "%", a: this._a };
},
toPercentageRgbString: function() {
return (this._a == 1) ?
"rgb(" + mathRound(bound01(this._r, 255) * 100) + "%, " + mathRound(bound01(this._g, 255) * 100) + "%, " + mathRound(bound01(this._b, 255) * 100) + "%)" :
"rgba(" + mathRound(bound01(this._r, 255) * 100) + "%, " + mathRound(bound01(this._g, 255) * 100) + "%, " + mathRound(bound01(this._b, 255) * 100) + "%, " + this._roundA + ")";
},
toName: function() {
if (this._a === 0) {
return "transparent";
}
if (this._a < 1) {
return false;
}
return hexNames[rgbToHex(this._r, this._g, this._b, true)] || false;
},
toFilter: function(secondColor) {
var hex8String = '#' + rgbaToArgbHex(this._r, this._g, this._b, this._a);
var secondHex8String = hex8String;
var gradientType = this._gradientType ? "GradientType = 1, " : "";
if (secondColor) {
var s = tinycolor(secondColor);
secondHex8String = '#' + rgbaToArgbHex(s._r, s._g, s._b, s._a);
}
return "progid:DXImageTransform.Microsoft.gradient("+gradientType+"startColorstr="+hex8String+",endColorstr="+secondHex8String+")";
},
toString: function(format) {
var formatSet = !!format;
format = format || this._format;
var formattedString = false;
var hasAlpha = this._a < 1 && this._a >= 0;
var needsAlphaFormat = !formatSet && hasAlpha && (format === "hex" || format === "hex6" || format === "hex3" || format === "hex4" || format === "hex8" || format === "name");
if (needsAlphaFormat) {
// Special case for "transparent", all other non-alpha formats
// will return rgba when there is transparency.
if (format === "name" && this._a === 0) {
return this.toName();
}
return this.toRgbString();
}
if (format === "rgb") {
formattedString = this.toRgbString();
}
if (format === "prgb") {
formattedString = this.toPercentageRgbString();
}
if (format === "hex" || format === "hex6") {
formattedString = this.toHexString();
}
if (format === "hex3") {
formattedString = this.toHexString(true);
}
if (format === "hex4") {
formattedString = this.toHex8String(true);
}
if (format === "hex8") {
formattedString = this.toHex8String();
}
if (format === "name") {
formattedString = this.toName();
}
if (format === "hsl") {
formattedString = this.toHslString();
}
if (format === "hsv") {
formattedString = this.toHsvString();
}
return formattedString || this.toHexString();
},
clone: function() {
return tinycolor(this.toString());
},
_applyModification: function(fn, args) {
var color = fn.apply(null, [this].concat([].slice.call(args)));
this._r = color._r;
this._g = color._g;
this._b = color._b;
this.setAlpha(color._a);
return this;
},
lighten: function() {
return this._applyModification(lighten, arguments);
},
brighten: function() {
return this._applyModification(brighten, arguments);
},
darken: function() {
return this._applyModification(darken, arguments);
},
desaturate: function() {
return this._applyModification(desaturate, arguments);
},
saturate: function() {
return this._applyModification(saturate, arguments);
},
greyscale: function() {
return this._applyModification(greyscale, arguments);
},
spin: function() {
return this._applyModification(spin, arguments);
},
_applyCombination: function(fn, args) {
return fn.apply(null, [this].concat([].slice.call(args)));
},
analogous: function() {
return this._applyCombination(analogous, arguments);
},
complement: function() {
return this._applyCombination(complement, arguments);
},
monochromatic: function() {
return this._applyCombination(monochromatic, arguments);
},
splitcomplement: function() {
return this._applyCombination(splitcomplement, arguments);
},
triad: function() {
return this._applyCombination(triad, arguments);
},
tetrad: function() {
return this._applyCombination(tetrad, arguments);
}
};
// If input is an object, force 1 into "1.0" to handle ratios properly
// String input requires "1.0" as input, so 1 will be treated as 1
tinycolor.fromRatio = function(color, opts) {
if (typeof color == "object") {
var newColor = {};
for (var i in color) {
if (color.hasOwnProperty(i)) {
if (i === "a") {
newColor[i] = color[i];
}
else {
newColor[i] = convertToPercentage(color[i]);
}
}
}
color = newColor;
}
return tinycolor(color, opts);
};
// Given a string or object, convert that input to RGB
// Possible string inputs:
//
// "red"
// "#f00" or "f00"
// "#ff0000" or "ff0000"
// "#ff000000" or "ff000000"
// "rgb 255 0 0" or "rgb (255, 0, 0)"
// "rgb 1.0 0 0" or "rgb (1, 0, 0)"
// "rgba (255, 0, 0, 1)" or "rgba 255, 0, 0, 1"
// "rgba (1.0, 0, 0, 1)" or "rgba 1.0, 0, 0, 1"
// "hsl(0, 100%, 50%)" or "hsl 0 100% 50%"
// "hsla(0, 100%, 50%, 1)" or "hsla 0 100% 50%, 1"
// "hsv(0, 100%, 100%)" or "hsv 0 100% 100%"
//
function inputToRGB(color) {
var rgb = { r: 0, g: 0, b: 0 };
var a = 1;
var s = null;
var v = null;
var l = null;
var ok = false;
var format = false;
if (typeof color == "string") {
color = stringInputToObject(color);
}
if (typeof color == "object") {
if (isValidCSSUnit(color.r) && isValidCSSUnit(color.g) && isValidCSSUnit(color.b)) {
rgb = rgbToRgb(color.r, color.g, color.b);
ok = true;
format = String(color.r).substr(-1) === "%" ? "prgb" : "rgb";
}
else if (isValidCSSUnit(color.h) && isValidCSSUnit(color.s) && isValidCSSUnit(color.v)) {
s = convertToPercentage(color.s);
v = convertToPercentage(color.v);
rgb = hsvToRgb(color.h, s, v);
ok = true;
format = "hsv";
}
else if (isValidCSSUnit(color.h) && isValidCSSUnit(color.s) && isValidCSSUnit(color.l)) {
s = convertToPercentage(color.s);
l = convertToPercentage(color.l);
rgb = hslToRgb(color.h, s, l);
ok = true;
format = "hsl";
}
if (color.hasOwnProperty("a")) {
a = color.a;
}
}
a = boundAlpha(a);
return {
ok: ok,
format: color.format || format,
r: mathMin(255, mathMax(rgb.r, 0)),
g: mathMin(255, mathMax(rgb.g, 0)),
b: mathMin(255, mathMax(rgb.b, 0)),
a: a
};
}
// Conversion Functions
// --------------------
// rgbToHsl, rgbToHsv, hslToRgb, hsvToRgb modified from:
// <http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript>
// rgbToRgb
// Handle bounds / percentage checking to conform to CSS color spec
// <http://www.w3.org/TR/css3-color/>
// *Assumes:* r, g, b in [0, 255] or [0, 1]
// *Returns:* { r, g, b } in [0, 255]
function rgbToRgb(r, g, b){
return {
r: bound01(r, 255) * 255,
g: bound01(g, 255) * 255,
b: bound01(b, 255) * 255
};
}
// rgbToHsl
// Converts an RGB color value to HSL.
// *Assumes:* r, g, and b are contained in [0, 255] or [0, 1]
// *Returns:* { h, s, l } in [0,1]
function rgbToHsl(r, g, b) {
r = bound01(r, 255);
g = bound01(g, 255);
b = bound01(b, 255);
var max = mathMax(r, g, b), min = mathMin(r, g, b);
var h, s, l = (max + min) / 2;
if(max == min) {
h = s = 0; // achromatic
}
else {
var d = max - min;
s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
switch(max) {
case r: h = (g - b) / d + (g < b ? 6 : 0); break;
case g: h = (b - r) / d + 2; break;
case b: h = (r - g) / d + 4; break;
}
h /= 6;
}
return { h: h, s: s, l: l };
}
// hslToRgb
// Converts an HSL color value to RGB.
// *Assumes:* h is contained in [0, 1] or [0, 360] and s and l are contained [0, 1] or [0, 100]
// *Returns:* { r, g, b } in the set [0, 255]
function hslToRgb(h, s, l) {
var r, g, b;
h = bound01(h, 360);
s = bound01(s, 100);
l = bound01(l, 100);
function hue2rgb(p, q, t) {
if(t < 0) t += 1;
if(t > 1) t -= 1;
if(t < 1/6) return p + (q - p) * 6 * t;
if(t < 1/2) return q;
if(t < 2/3) return p + (q - p) * (2/3 - t) * 6;
return p;
}
if(s === 0) {
r = g = b = l; // achromatic
}
else {
var q = l < 0.5 ? l * (1 + s) : l + s - l * s;
var p = 2 * l - q;
r = hue2rgb(p, q, h + 1/3);
g = hue2rgb(p, q, h);
b = hue2rgb(p, q, h - 1/3);
}
return { r: r * 255, g: g * 255, b: b * 255 };
}
// rgbToHsv
// Converts an RGB color value to HSV
// *Assumes:* r, g, and b are contained in the set [0, 255] or [0, 1]
// *Returns:* { h, s, v } in [0,1]
function rgbToHsv(r, g, b) {
r = bound01(r, 255);
g = bound01(g, 255);
b = bound01(b, 255);
var max = mathMax(r, g, b), min = mathMin(r, g, b);
var h, s, v = max;
var d = max - min;
s = max === 0 ? 0 : d / max;
if(max == min) {
h = 0; // achromatic
}
else {
switch(max) {
case r: h = (g - b) / d + (g < b ? 6 : 0); break;
case g: h = (b - r) / d + 2; break;
case b: h = (r - g) / d + 4; break;
}
h /= 6;
}
return { h: h, s: s, v: v };
}
// hsvToRgb
// Converts an HSV color value to RGB.
// *Assumes:* h is contained in [0, 1] or [0, 360] and s and v are contained in [0, 1] or [0, 100]
// *Returns:* { r, g, b } in the set [0, 255]
function hsvToRgb(h, s, v) {
h = bound01(h, 360) * 6;
s = bound01(s, 100);
v = bound01(v, 100);
var i = Math.floor(h),
f = h - i,
p = v * (1 - s),
q = v * (1 - f * s),
t = v * (1 - (1 - f) * s),
mod = i % 6,
r = [v, q, p, p, t, v][mod],
g = [t, v, v, q, p, p][mod],
b = [p, p, t, v, v, q][mod];
return { r: r * 255, g: g * 255, b: b * 255 };
}
// rgbToHex
// Converts an RGB color to hex
// Assumes r, g, and b are contained in the set [0, 255]
// Returns a 3 or 6 character hex
function rgbToHex(r, g, b, allow3Char) {
var hex = [
pad2(mathRound(r).toString(16)),
pad2(mathRound(g).toString(16)),
pad2(mathRound(b).toString(16))
];
// Return a 3 character hex if possible
if (allow3Char && hex[0].charAt(0) == hex[0].charAt(1) && hex[1].charAt(0) == hex[1].charAt(1) && hex[2].charAt(0) == hex[2].charAt(1)) {
return hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0);
}
return hex.join("");
}
// rgbaToHex
// Converts an RGBA color plus alpha transparency to hex
// Assumes r, g, b are contained in the set [0, 255] and
// a in [0, 1]. Returns a 4 or 8 character rgba hex
function rgbaToHex(r, g, b, a, allow4Char) {
var hex = [
pad2(mathRound(r).toString(16)),
pad2(mathRound(g).toString(16)),
pad2(mathRound(b).toString(16)),
pad2(convertDecimalToHex(a))
];
// Return a 4 character hex if possible
if (allow4Char && hex[0].charAt(0) == hex[0].charAt(1) && hex[1].charAt(0) == hex[1].charAt(1) && hex[2].charAt(0) == hex[2].charAt(1) && hex[3].charAt(0) == hex[3].charAt(1)) {
return hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0) + hex[3].charAt(0);
}
return hex.join("");
}
// rgbaToArgbHex
// Converts an RGBA color to an ARGB Hex8 string
// Rarely used, but required for "toFilter()"
function rgbaToArgbHex(r, g, b, a) {
var hex = [
pad2(convertDecimalToHex(a)),
pad2(mathRound(r).toString(16)),
pad2(mathRound(g).toString(16)),
pad2(mathRound(b).toString(16))
];
return hex.join("");
}
// equals
// Can be called with any tinycolor input
tinycolor.equals = function (color1, color2) {
if (!color1 || !color2) { return false; }
return tinycolor(color1).toRgbString() == tinycolor(color2).toRgbString();
};
tinycolor.random = function() {
return tinycolor.fromRatio({
r: mathRandom(),
g: mathRandom(),
b: mathRandom()
});
};
// Modification Functions
// ----------------------
// Thanks to less.js for some of the basics here
// <https://github.com/cloudhead/less.js/blob/master/lib/less/functions.js>
function desaturate(color, amount) {
amount = (amount === 0) ? 0 : (amount || 10);
var hsl = tinycolor(color).toHsl();
hsl.s -= amount / 100;
hsl.s = clamp01(hsl.s);
return tinycolor(hsl);
}
function saturate(color, amount) {
amount = (amount === 0) ? 0 : (amount || 10);
var hsl = tinycolor(color).toHsl();
hsl.s += amount / 100;
hsl.s = clamp01(hsl.s);
return tinycolor(hsl);
}
function greyscale(color) {
return tinycolor(color).desaturate(100);
}
function lighten (color, amount) {
amount = (amount === 0) ? 0 : (amount || 10);
var hsl = tinycolor(color).toHsl();
hsl.l += amount / 100;
hsl.l = clamp01(hsl.l);
return tinycolor(hsl);
}
function brighten(color, amount) {
amount = (amount === 0) ? 0 : (amount || 10);
var rgb = tinycolor(color).toRgb();
rgb.r = mathMax(0, mathMin(255, rgb.r - mathRound(255 * - (amount / 100))));
rgb.g = mathMax(0, mathMin(255, rgb.g - mathRound(255 * - (amount / 100))));
rgb.b = mathMax(0, mathMin(255, rgb.b - mathRound(255 * - (amount / 100))));
return tinycolor(rgb);
}
function darken (color, amount) {
amount = (amount === 0) ? 0 : (amount || 10);
var hsl = tinycolor(color).toHsl();
hsl.l -= amount / 100;
hsl.l = clamp01(hsl.l);
return tinycolor(hsl);
}
// Spin takes a positive or negative amount within [-360, 360] indicating the change of hue.
// Values outside of this range will be wrapped into this range.
function spin(color, amount) {
var hsl = tinycolor(color).toHsl();
var hue = (hsl.h + amount) % 360;
hsl.h = hue < 0 ? 360 + hue : hue;
return tinycolor(hsl);
}
// Combination Functions
// ---------------------
// Thanks to jQuery xColor for some of the ideas behind these
// <https://github.com/infusion/jQuery-xcolor/blob/master/jquery.xcolor.js>
function complement(color) {
var hsl = tinycolor(color).toHsl();
hsl.h = (hsl.h + 180) % 360;
return tinycolor(hsl);
}
function triad(color) {
var hsl = tinycolor(color).toHsl();
var h = hsl.h;
return [
tinycolor(color),
tinycolor({ h: (h + 120) % 360, s: hsl.s, l: hsl.l }),
tinycolor({ h: (h + 240) % 360, s: hsl.s, l: hsl.l })
];
}
function tetrad(color) {
var hsl = tinycolor(color).toHsl();
var h = hsl.h;
return [
tinycolor(color),
tinycolor({ h: (h + 90) % 360, s: hsl.s, l: hsl.l }),
tinycolor({ h: (h + 180) % 360, s: hsl.s, l: hsl.l }),
tinycolor({ h: (h + 270) % 360, s: hsl.s, l: hsl.l })
];
}
function splitcomplement(color) {
var hsl = tinycolor(color).toHsl();
var h = hsl.h;
return [
tinycolor(color),
tinycolor({ h: (h + 72) % 360, s: hsl.s, l: hsl.l}),
tinycolor({ h: (h + 216) % 360, s: hsl.s, l: hsl.l})
];
}
function analogous(color, results, slices) {
results = results || 6;
slices = slices || 30;
var hsl = tinycolor(color).toHsl();
var part = 360 / slices;
var ret = [tinycolor(color)];
for (hsl.h = ((hsl.h - (part * results >> 1)) + 720) % 360; --results; ) {
hsl.h = (hsl.h + part) % 360;
ret.push(tinycolor(hsl));
}
return ret;
}
function monochromatic(color, results) {
results = results || 6;
var hsv = tinycolor(color).toHsv();
var h = hsv.h, s = hsv.s, v = hsv.v;
var ret = [];
var modification = 1 / results;
while (results--) {
ret.push(tinycolor({ h: h, s: s, v: v}));
v = (v + modification) % 1;
}
return ret;
}
// Utility Functions
// ---------------------
tinycolor.mix = function(color1, color2, amount) {
amount = (amount === 0) ? 0 : (amount || 50);
var rgb1 = tinycolor(color1).toRgb();
var rgb2 = tinycolor(color2).toRgb();
var p = amount / 100;
var rgba = {
r: ((rgb2.r - rgb1.r) * p) + rgb1.r,
g: ((rgb2.g - rgb1.g) * p) + rgb1.g,
b: ((rgb2.b - rgb1.b) * p) + rgb1.b,
a: ((rgb2.a - rgb1.a) * p) + rgb1.a
};
return tinycolor(rgba);
};
// Readability Functions
// ---------------------
// <http://www.w3.org/TR/2008/REC-WCAG20-20081211/#contrast-ratiodef (WCAG Version 2)
// contrast
// Analyze the 2 colors and returns the color contrast defined by (WCAG Version 2)
tinycolor.readability = function(color1, color2) {
var c1 = tinycolor(color1);
var c2 = tinycolor(color2);
return (Math.max(c1.getLuminance(),c2.getLuminance())+0.05) / (Math.min(c1.getLuminance(),c2.getLuminance())+0.05);
};
// isReadable
// Ensure that foreground and background color combinations meet WCAG2 guidelines.
// The third argument is an optional Object.
// the 'level' property states 'AA' or 'AAA' - if missing or invalid, it defaults to 'AA';
// the 'size' property states 'large' or 'small' - if missing or invalid, it defaults to 'small'.
// If the entire object is absent, isReadable defaults to {level:"AA",size:"small"}.
// *Example*
// tinycolor.isReadable("#000", "#111") => false
// tinycolor.isReadable("#000", "#111",{level:"AA",size:"large"}) => false
tinycolor.isReadable = function(color1, color2, wcag2) {
var readability = tinycolor.readability(color1, color2);
var wcag2Parms, out;
out = false;
wcag2Parms = validateWCAG2Parms(wcag2);
switch (wcag2Parms.level + wcag2Parms.size) {
case "AAsmall":
case "AAAlarge":
out = readability >= 4.5;
break;
case "AAlarge":
out = readability >= 3;
break;
case "AAAsmall":
out = readability >= 7;
break;
}
return out;
};
// mostReadable
// Given a base color and a list of possible foreground or background
// colors for that base, returns the most readable color.
// Optionally returns Black or White if the most readable color is unreadable.
// *Example*
// tinycolor.mostReadable(tinycolor.mostReadable("#123", ["#124", "#125"],{includeFallbackColors:false}).toHexString(); // "#112255"
// tinycolor.mostReadable(tinycolor.mostReadable("#123", ["#124", "#125"],{includeFallbackColors:true}).toHexString(); // "#ffffff"
// tinycolor.mostReadable("#a8015a", ["#faf3f3"],{includeFallbackColors:true,level:"AAA",size:"large"}).toHexString(); // "#faf3f3"
// tinycolor.mostReadable("#a8015a", ["#faf3f3"],{includeFallbackColors:true,level:"AAA",size:"small"}).toHexString(); // "#ffffff"
tinycolor.mostReadable = function(baseColor, colorList, args) {
var bestColor = null;
var bestScore = 0;
var readability;
var includeFallbackColors, level, size ;
args = args || {};
includeFallbackColors = args.includeFallbackColors ;
level = args.level;
size = args.size;
for (var i= 0; i < colorList.length ; i++) {
readability = tinycolor.readability(baseColor, colorList[i]);
if (readability > bestScore) {
bestScore = readability;
bestColor = tinycolor(colorList[i]);
}
}
if (tinycolor.isReadable(baseColor, bestColor, {"level":level,"size":size}) || !includeFallbackColors) {
return bestColor;
}
else {
args.includeFallbackColors=false;
return tinycolor.mostReadable(baseColor,["#fff", "#000"],args);
}
};
// Big List of Colors
// ------------------
// <http://www.w3.org/TR/css3-color/#svg-color>
var names = tinycolor.names = {
aliceblue: "f0f8ff",
antiquewhite: "faebd7",
aqua: "0ff",
aquamarine: "7fffd4",
azure: "f0ffff",
beige: "f5f5dc",
bisque: "ffe4c4",
black: "000",
blanchedalmond: "ffebcd",
blue: "00f",
blueviolet: "8a2be2",
brown: "a52a2a",
burlywood: "deb887",
burntsienna: "ea7e5d",
cadetblue: "5f9ea0",
chartreuse: "7fff00",
chocolate: "d2691e",
coral: "ff7f50",
cornflowerblue: "6495ed",
cornsilk: "fff8dc",
crimson: "dc143c",
cyan: "0ff",
darkblue: "00008b",
darkcyan: "008b8b",
darkgoldenrod: "b8860b",
darkgray: "a9a9a9",
darkgreen: "006400",
darkgrey: "a9a9a9",
darkkhaki: "bdb76b",
darkmagenta: "8b008b",
darkolivegreen: "556b2f",
darkorange: "ff8c00",
darkorchid: "9932cc",
darkred: "8b0000",
darksalmon: "e9967a",
darkseagreen: "8fbc8f",
darkslateblue: "483d8b",
darkslategray: "2f4f4f",
darkslategrey: "2f4f4f",
darkturquoise: "00ced1",
darkviolet: "9400d3",
deeppink: "ff1493",
deepskyblue: "00bfff",
dimgray: "696969",
dimgrey: "696969",
dodgerblue: "1e90ff",
firebrick: "b22222",
floralwhite: "fffaf0",
forestgreen: "228b22",
fuchsia: "f0f",
gainsboro: "dcdcdc",
ghostwhite: "f8f8ff",
gold: "ffd700",
goldenrod: "daa520",
gray: "808080",
green: "008000",
greenyellow: "adff2f",
grey: "808080",
honeydew: "f0fff0",
hotpink: "ff69b4",
indianred: "cd5c5c",
indigo: "4b0082",
ivory: "fffff0",
khaki: "f0e68c",
lavender: "e6e6fa",
lavenderblush: "fff0f5",
lawngreen: "7cfc00",
lemonchiffon: "fffacd",
lightblue: "add8e6",
lightcoral: "f08080",
lightcyan: "e0ffff",
lightgoldenrodyellow: "fafad2",
lightgray: "d3d3d3",
lightgreen: "90ee90",
lightgrey: "d3d3d3",
lightpink: "ffb6c1",
lightsalmon: "ffa07a",
lightseagreen: "20b2aa",
lightskyblue: "87cefa",
lightslategray: "789",
lightslategrey: "789",
lightsteelblue: "b0c4de",
lightyellow: "ffffe0",
lime: "0f0",
limegreen: "32cd32",
linen: "faf0e6",
magenta: "f0f",
maroon: "800000",
mediumaquamarine: "66cdaa",
mediumblue: "0000cd",
mediumorchid: "ba55d3",
mediumpurple: "9370db",
mediumseagreen: "3cb371",
mediumslateblue: "7b68ee",
mediumspringgreen: "00fa9a",
mediumturquoise: "48d1cc",
mediumvioletred: "c71585",
midnightblue: "191970",
mintcream: "f5fffa",
mistyrose: "ffe4e1",
moccasin: "ffe4b5",
navajowhite: "ffdead",
navy: "000080",
oldlace: "fdf5e6",
olive: "808000",
olivedrab: "6b8e23",
orange: "ffa500",
orangered: "ff4500",
orchid: "da70d6",
palegoldenrod: "eee8aa",
palegreen: "98fb98",
paleturquoise: "afeeee",
palevioletred: "db7093",
papayawhip: "ffefd5",
peachpuff: "ffdab9",
peru: "cd853f",
pink: "ffc0cb",
plum: "dda0dd",
powderblue: "b0e0e6",
purple: "800080",
rebeccapurple: "663399",
red: "f00",
rosybrown: "bc8f8f",
royalblue: "4169e1",
saddlebrown: "8b4513",
salmon: "fa8072",
sandybrown: "f4a460",
seagreen: "2e8b57",
seashell: "fff5ee",
sienna: "a0522d",
silver: "c0c0c0",
skyblue: "87ceeb",
slateblue: "6a5acd",
slategray: "708090",
slategrey: "708090",
snow: "fffafa",
springgreen: "00ff7f",
steelblue: "4682b4",
tan: "d2b48c",
teal: "008080",
thistle: "d8bfd8",
tomato: "ff6347",
turquoise: "40e0d0",
violet: "ee82ee",
wheat: "f5deb3",
white: "fff",
whitesmoke: "f5f5f5",
yellow: "ff0",
yellowgreen: "9acd32"
};
// Make it easy to access colors via hexNames[hex]
var hexNames = tinycolor.hexNames = flip(names);
// Utilities
// ---------
// { 'name1': 'val1' } becomes { 'val1': 'name1' }
function flip(o) {
var flipped = { };
for (var i in o) {
if (o.hasOwnProperty(i)) {
flipped[o[i]] = i;
}
}
return flipped;
}
// Return a valid alpha value [0,1] with all invalid values being set to 1
function boundAlpha(a) {
a = parseFloat(a);
if (isNaN(a) || a < 0 || a > 1) {
a = 1;
}
return a;
}
// Take input from [0, n] and return it as [0, 1]
function bound01(n, max) {
if (isOnePointZero(n)) { n = "100%"; }
var processPercent = isPercentage(n);
n = mathMin(max, mathMax(0, parseFloat(n)));
// Automatically convert percentage into number
if (processPercent) {
n = parseInt(n * max, 10) / 100;
}
// Handle floating point rounding errors
if ((Math.abs(n - max) < 0.000001)) {
return 1;
}
// Convert into [0, 1] range if it isn't already
return (n % max) / parseFloat(max);
}
// Force a number between 0 and 1
function clamp01(val) {
return mathMin(1, mathMax(0, val));
}
// Parse a base-16 hex value into a base-10 integer
function parseIntFromHex(val) {
return parseInt(val, 16);
}
// Need to handle 1.0 as 100%, since once it is a number, there is no difference between it and 1
// <http://stackoverflow.com/questions/7422072/javascript-how-to-detect-number-as-a-decimal-including-1-0>
function isOnePointZero(n) {
return typeof n == "string" && n.indexOf('.') != -1 && parseFloat(n) === 1;
}
// Check to see if string passed in is a percentage
function isPercentage(n) {
return typeof n === "string" && n.indexOf('%') != -1;
}
// Force a hex value to have 2 characters
function pad2(c) {
return c.length == 1 ? '0' + c : '' + c;
}
// Replace a decimal with it's percentage value
function convertToPercentage(n) {
if (n <= 1) {
n = (n * 100) + "%";
}
return n;
}
// Converts a decimal to a hex value
function convertDecimalToHex(d) {
return Math.round(parseFloat(d) * 255).toString(16);
}
// Converts a hex value to a decimal
function convertHexToDecimal(h) {
return (parseIntFromHex(h) / 255);
}
var matchers = (function() {
// <http://www.w3.org/TR/css3-values/#integers>
var CSS_INTEGER = "[-\\+]?\\d+%?";
// <http://www.w3.org/TR/css3-values/#number-value>
var CSS_NUMBER = "[-\\+]?\\d*\\.\\d+%?";
// Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
var CSS_UNIT = "(?:" + CSS_NUMBER + ")|(?:" + CSS_INTEGER + ")";
// Actual matching.
// Parentheses and commas are optional, but not required.
// Whitespace can take the place of commas or opening paren
var PERMISSIVE_MATCH3 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
var PERMISSIVE_MATCH4 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
return {
CSS_UNIT: new RegExp(CSS_UNIT),
rgb: new RegExp("rgb" + PERMISSIVE_MATCH3),
rgba: new RegExp("rgba" + PERMISSIVE_MATCH4),
hsl: new RegExp("hsl" + PERMISSIVE_MATCH3),
hsla: new RegExp("hsla" + PERMISSIVE_MATCH4),
hsv: new RegExp("hsv" + PERMISSIVE_MATCH3),
hsva: new RegExp("hsva" + PERMISSIVE_MATCH4),
hex3: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
hex6: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,
hex4: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
hex8: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/
};
})();
// isValidCSSUnit
// Take in a single string / number and check to see if it looks like a CSS unit
// (see matchers above for definition).
function isValidCSSUnit(color) {
return !!matchers.CSS_UNIT.exec(color);
}
// stringInputToObject
// Permissive string parsing. Take in a number of formats, and output an object
// based on detected format. Returns { r, g, b } or { h, s, l } or { h, s, v}
function stringInputToObject(color) {
color = color.replace(trimLeft, '').replace(trimRight, '').toLowerCase();
var named = false;
if (names[color]) {
color = names[color];
named = true;
}
else if (color == 'transparent') {
return { r: 0, g: 0, b: 0, a: 0, format: "name" };
}
// Try to match string input using regular expressions.
// Keep most of the number bounding out of this function - don't worry about [0,1] or [0,100] or [0,360]
// Just return an object and let the conversion functions handle that.
// This way the result will be the same whether the tinycolor is initialized with string or object.
var match;
if ((match = matchers.rgb.exec(color))) {
return { r: match[1], g: match[2], b: match[3] };
}
if ((match = matchers.rgba.exec(color))) {
return { r: match[1], g: match[2], b: match[3], a: match[4] };
}
if ((match = matchers.hsl.exec(color))) {
return { h: match[1], s: match[2], l: match[3] };
}
if ((match = matchers.hsla.exec(color))) {
return { h: match[1], s: match[2], l: match[3], a: match[4] };
}
if ((match = matchers.hsv.exec(color))) {
return { h: match[1], s: match[2], v: match[3] };
}
if ((match = matchers.hsva.exec(color))) {
return { h: match[1], s: match[2], v: match[3], a: match[4] };
}
if ((match = matchers.hex8.exec(color))) {
return {
r: parseIntFromHex(match[1]),
g: parseIntFromHex(match[2]),
b: parseIntFromHex(match[3]),
a: convertHexToDecimal(match[4]),
format: named ? "name" : "hex8"
};
}
if ((match = matchers.hex6.exec(color))) {
return {
r: parseIntFromHex(match[1]),
g: parseIntFromHex(match[2]),
b: parseIntFromHex(match[3]),
format: named ? "name" : "hex"
};
}
if ((match = matchers.hex4.exec(color))) {
return {
r: parseIntFromHex(match[1] + '' + match[1]),
g: parseIntFromHex(match[2] + '' + match[2]),
b: parseIntFromHex(match[3] + '' + match[3]),
a: convertHexToDecimal(match[4] + '' + match[4]),
format: named ? "name" : "hex8"
};
}
if ((match = matchers.hex3.exec(color))) {
return {
r: parseIntFromHex(match[1] + '' + match[1]),
g: parseIntFromHex(match[2] + '' + match[2]),
b: parseIntFromHex(match[3] + '' + match[3]),
format: named ? "name" : "hex"
};
}
return false;
}
function validateWCAG2Parms(parms) {
// return valid WCAG2 parms for isReadable.
// If input parms are invalid, return {"level":"AA", "size":"small"}
var level, size;
parms = parms || {"level":"AA", "size":"small"};
level = (parms.level || "AA").toUpperCase();
size = (parms.size || "small").toLowerCase();
if (level !== "AA" && level !== "AAA") {
level = "AA";
}
if (size !== "small" && size !== "large") {
size = "small";
}
return {"level":level, "size":size};
}
this.tinycolor = tinycolor;
})()`;
}
|
|
1296
|
|
|
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
|
// It is hacky way to make this function will be compiled preferentially by less
// resolve error: `ReferenceError: colorPalette is not defined`
// https://github.com/ant-design/ant-motion/issues/44
.tinyColorMixin();
// We create a very complex algorithm which take the place of original tint/shade color system
// to make sure no one can understand it 👻
// and create an entire color palette magicly by inputing just a single primary color.
// We are using bezier-curve easing function and some color manipulations like tint/shade/darken/spin
.colorPaletteMixin() {
@functions: ~`(function() {
var hueStep = 2;
var saturationStep = 16;
var saturationStep2 = 5;
var brightnessStep1 = 5;
var brightnessStep2 = 15;
var lightColorCount = 5;
var darkColorCount = 4;
var getHue = function(hsv, i, isLight) {
var hue;
if (hsv.h >= 60 && hsv.h <= 240) {
hue = isLight ? hsv.h - hueStep * i : hsv.h + hueStep * i;
} else {
hue = isLight ? hsv.h + hueStep * i : hsv.h - hueStep * i;
}
if (hue < 0) {
hue += 360;
} else if (hue >= 360) {
hue -= 360;
}
return Math.round(hue);
};
var getSaturation = function(hsv, i, isLight) {
var saturation;
if (isLight) {
saturation = Math.round(hsv.s * 100) - saturationStep * i;
} else if (i == darkColorCount) {
saturation = Math.round(hsv.s * 100) + saturationStep;
} else {
saturation = Math.round(hsv.s * 100) + saturationStep2 * i;
}
if (saturation > 100) {
saturation = 100;
}
if (isLight && i === lightColorCount && saturation > 10) {
saturation = 10;
}
if (saturation < 6) {
saturation = 6;
}
return Math.round(saturation);
};
var getValue = function(hsv, i, isLight) {
if (isLight) {
return Math.round(hsv.v * 100) + brightnessStep1 * i;
}
return Math.round(hsv.v * 100) - brightnessStep2 * i;
};
this.colorPalette = function(color, index) {
var isLight = index <= 6;
var hsv = tinycolor(color).toHsv();
var i = isLight ? lightColorCount + 1 - index : index - lightColorCount - 1;
return tinycolor({
h: getHue(hsv, i, isLight),
s: getSaturation(hsv, i, isLight),
v: getValue(hsv, i, isLight),
}).toHexString();
};
})()`;
}
|
|
1369
|
|
|
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
|
// It is hacky way to make this function will be compiled preferentially by less
// resolve error: `ReferenceError: colorPalette is not defined`
// https://github.com/ant-design/ant-motion/issues/44
.colorPaletteMixin();
// color palettes
@blue-1: color(~`colorPalette("@{blue-6}", 1)`);
@blue-2: color(~`colorPalette("@{blue-6}", 2)`);
@blue-3: color(~`colorPalette("@{blue-6}", 3)`);
@blue-4: color(~`colorPalette("@{blue-6}", 4)`);
@blue-5: color(~`colorPalette("@{blue-6}", 5)`);
@blue-6: #1890ff;
@blue-7: color(~`colorPalette("@{blue-6}", 7)`);
@blue-8: color(~`colorPalette("@{blue-6}", 8)`);
@blue-9: color(~`colorPalette("@{blue-6}", 9)`);
@blue-10: color(~`colorPalette("@{blue-6}", 10)`);
@purple-1: color(~`colorPalette("@{purple-6}", 1)`);
@purple-2: color(~`colorPalette("@{purple-6}", 2)`);
@purple-3: color(~`colorPalette("@{purple-6}", 3)`);
@purple-4: color(~`colorPalette("@{purple-6}", 4)`);
@purple-5: color(~`colorPalette("@{purple-6}", 5)`);
@purple-6: #722ed1;
@purple-7: color(~`colorPalette("@{purple-6}", 7)`);
@purple-8: color(~`colorPalette("@{purple-6}", 8)`);
@purple-9: color(~`colorPalette("@{purple-6}", 9)`);
@purple-10: color(~`colorPalette("@{purple-6}", 10)`);
@cyan-1: color(~`colorPalette("@{cyan-6}", 1)`);
@cyan-2: color(~`colorPalette("@{cyan-6}", 2)`);
@cyan-3: color(~`colorPalette("@{cyan-6}", 3)`);
@cyan-4: color(~`colorPalette("@{cyan-6}", 4)`);
@cyan-5: color(~`colorPalette("@{cyan-6}", 5)`);
@cyan-6: #13c2c2;
@cyan-7: color(~`colorPalette("@{cyan-6}", 7)`);
@cyan-8: color(~`colorPalette("@{cyan-6}", 8)`);
@cyan-9: color(~`colorPalette("@{cyan-6}", 9)`);
@cyan-10: color(~`colorPalette("@{cyan-6}", 10)`);
@green-1: color(~`colorPalette("@{green-6}", 1)`);
@green-2: color(~`colorPalette("@{green-6}", 2)`);
@green-3: color(~`colorPalette("@{green-6}", 3)`);
@green-4: color(~`colorPalette("@{green-6}", 4)`);
@green-5: color(~`colorPalette("@{green-6}", 5)`);
@green-6: #52c41a;
@green-7: color(~`colorPalette("@{green-6}", 7)`);
@green-8: color(~`colorPalette("@{green-6}", 8)`);
@green-9: color(~`colorPalette("@{green-6}", 9)`);
@green-10: color(~`colorPalette("@{green-6}", 10)`);
@magenta-1: color(~`colorPalette("@{magenta-6}", 1)`);
@magenta-2: color(~`colorPalette("@{magenta-6}", 2)`);
@magenta-3: color(~`colorPalette("@{magenta-6}", 3)`);
@magenta-4: color(~`colorPalette("@{magenta-6}", 4)`);
@magenta-5: color(~`colorPalette("@{magenta-6}", 5)`);
@magenta-6: #eb2f96;
@magenta-7: color(~`colorPalette("@{magenta-6}", 7)`);
@magenta-8: color(~`colorPalette("@{magenta-6}", 8)`);
@magenta-9: color(~`colorPalette("@{magenta-6}", 9)`);
@magenta-10: color(~`colorPalette("@{magenta-6}", 10)`);
// alias of magenta
@pink-1: color(~`colorPalette("@{pink-6}", 1)`);
@pink-2: color(~`colorPalette("@{pink-6}", 2)`);
@pink-3: color(~`colorPalette("@{pink-6}", 3)`);
@pink-4: color(~`colorPalette("@{pink-6}", 4)`);
@pink-5: color(~`colorPalette("@{pink-6}", 5)`);
@pink-6: #eb2f96;
@pink-7: color(~`colorPalette("@{pink-6}", 7)`);
@pink-8: color(~`colorPalette("@{pink-6}", 8)`);
@pink-9: color(~`colorPalette("@{pink-6}", 9)`);
@pink-10: color(~`colorPalette("@{pink-6}", 10)`);
@red-1: color(~`colorPalette("@{red-6}", 1)`);
@red-2: color(~`colorPalette("@{red-6}", 2)`);
@red-3: color(~`colorPalette("@{red-6}", 3)`);
@red-4: color(~`colorPalette("@{red-6}", 4)`);
@red-5: color(~`colorPalette("@{red-6}", 5)`);
@red-6: #f5222d;
@red-7: color(~`colorPalette("@{red-6}", 7)`);
@red-8: color(~`colorPalette("@{red-6}", 8)`);
@red-9: color(~`colorPalette("@{red-6}", 9)`);
@red-10: color(~`colorPalette("@{red-6}", 10)`);
@orange-1: color(~`colorPalette("@{orange-6}", 1)`);
@orange-2: color(~`colorPalette("@{orange-6}", 2)`);
@orange-3: color(~`colorPalette("@{orange-6}", 3)`);
@orange-4: color(~`colorPalette("@{orange-6}", 4)`);
@orange-5: color(~`colorPalette("@{orange-6}", 5)`);
@orange-6: #fa8c16;
@orange-7: color(~`colorPalette("@{orange-6}", 7)`);
@orange-8: color(~`colorPalette("@{orange-6}", 8)`);
@orange-9: color(~`colorPalette("@{orange-6}", 9)`);
@orange-10: color(~`colorPalette("@{orange-6}", 10)`);
@yellow-1: color(~`colorPalette("@{yellow-6}", 1)`);
@yellow-2: color(~`colorPalette("@{yellow-6}", 2)`);
@yellow-3: color(~`colorPalette("@{yellow-6}", 3)`);
@yellow-4: color(~`colorPalette("@{yellow-6}", 4)`);
@yellow-5: color(~`colorPalette("@{yellow-6}", 5)`);
@yellow-6: #fadb14;
@yellow-7: color(~`colorPalette("@{yellow-6}", 7)`);
@yellow-8: color(~`colorPalette("@{yellow-6}", 8)`);
@yellow-9: color(~`colorPalette("@{yellow-6}", 9)`);
@yellow-10: color(~`colorPalette("@{yellow-6}", 10)`);
@volcano-1: color(~`colorPalette("@{volcano-6}", 1)`);
@volcano-2: color(~`colorPalette("@{volcano-6}", 2)`);
@volcano-3: color(~`colorPalette("@{volcano-6}", 3)`);
@volcano-4: color(~`colorPalette("@{volcano-6}", 4)`);
@volcano-5: color(~`colorPalette("@{volcano-6}", 5)`);
@volcano-6: #fa541c;
@volcano-7: color(~`colorPalette("@{volcano-6}", 7)`);
@volcano-8: color(~`colorPalette("@{volcano-6}", 8)`);
@volcano-9: color(~`colorPalette("@{volcano-6}", 9)`);
@volcano-10: color(~`colorPalette("@{volcano-6}", 10)`);
@geekblue-1: color(~`colorPalette("@{geekblue-6}", 1)`);
@geekblue-2: color(~`colorPalette("@{geekblue-6}", 2)`);
@geekblue-3: color(~`colorPalette("@{geekblue-6}", 3)`);
@geekblue-4: color(~`colorPalette("@{geekblue-6}", 4)`);
@geekblue-5: color(~`colorPalette("@{geekblue-6}", 5)`);
@geekblue-6: #2f54eb;
@geekblue-7: color(~`colorPalette("@{geekblue-6}", 7)`);
@geekblue-8: color(~`colorPalette("@{geekblue-6}", 8)`);
@geekblue-9: color(~`colorPalette("@{geekblue-6}", 9)`);
@geekblue-10: color(~`colorPalette("@{geekblue-6}", 10)`);
@lime-1: color(~`colorPalette("@{lime-6}", 1)`);
@lime-2: color(~`colorPalette("@{lime-6}", 2)`);
@lime-3: color(~`colorPalette("@{lime-6}", 3)`);
@lime-4: color(~`colorPalette("@{lime-6}", 4)`);
@lime-5: color(~`colorPalette("@{lime-6}", 5)`);
@lime-6: #a0d911;
@lime-7: color(~`colorPalette("@{lime-6}", 7)`);
@lime-8: color(~`colorPalette("@{lime-6}", 8)`);
@lime-9: color(~`colorPalette("@{lime-6}", 9)`);
@lime-10: color(~`colorPalette("@{lime-6}", 10)`);
@gold-1: color(~`colorPalette("@{gold-6}", 1)`);
@gold-2: color(~`colorPalette("@{gold-6}", 2)`);
@gold-3: color(~`colorPalette("@{gold-6}", 3)`);
@gold-4: color(~`colorPalette("@{gold-6}", 4)`);
@gold-5: color(~`colorPalette("@{gold-6}", 5)`);
@gold-6: #faad14;
@gold-7: color(~`colorPalette("@{gold-6}", 7)`);
@gold-8: color(~`colorPalette("@{gold-6}", 8)`);
@gold-9: color(~`colorPalette("@{gold-6}", 9)`);
@gold-10: color(~`colorPalette("@{gold-6}", 10)`);
// The prefix to use on all css classes from ant.
|
|
1521
|
@ant-prefix: ant;
|
|
1522
1523
1524
|
// -------- Colors -----------
|
|
1525
1526
1527
1528
1529
1530
1531
|
@info-color: @blue-6;
@success-color: @green-6;
@processing-color: @blue-6;
@error-color: @red-6;
@highlight-color: @red-6;
@warning-color: @gold-6;
@normal-color: #d9d9d9;
|
|
1532
1533
1534
|
// Color used by default to control hover and active backgrounds and for
// alert info backgrounds.
|
|
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
|
@primary-1: color(~`colorPalette("@{primary-color}", 1)`); // replace tint(@primary-color, 90%)
@primary-2: color(~`colorPalette("@{primary-color}", 2)`); // replace tint(@primary-color, 80%)
@primary-3: color(~`colorPalette("@{primary-color}", 3)`); // unused
@primary-4: color(~`colorPalette("@{primary-color}", 4)`); // unused
@primary-5: color(~`colorPalette("@{primary-color}", 5)`); // color used to control the text color in many active and hover states, replace tint(@primary-color, 20%)
@primary-6: @primary-color; // color used to control the text color of active buttons, don't use, use @primary-color
@primary-7: color(~`colorPalette("@{primary-color}", 7)`); // replace shade(@primary-color, 5%)
@primary-8: color(~`colorPalette("@{primary-color}", 8)`); // unused
@primary-9: color(~`colorPalette("@{primary-color}", 9)`); // unused
@primary-10: color(~`colorPalette("@{primary-color}", 10)`); // unused
|
|
1545
1546
1547
1548
1549
|
// Base Scaffolding Variables
// ---
// Background color for `<body>`
|
|
1550
|
@body-background: #fff;
|
|
1551
|
// Base background color for most components
|
|
1552
1553
|
@component-background: #fff;
@font-family: "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif,
|
|
1554
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
1555
1556
1557
1558
1559
1560
|
@code-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
@heading-color: fade(#000, 85%);
@text-color: fade(#000, 65%);
@text-color-secondary: fade(#000, 45%);
@heading-color-dark: fade(#fff, 100%);
@text-color-dark: fade(#fff, 85%);
|
|
1561
|
@text-color-secondary-dark: fade(#fff, 65%);
|
|
1562
1563
1564
1565
1566
1567
|
@font-size-base: 14px;
@font-size-lg: @font-size-base + 2px;
@font-size-sm: 12px;
@line-height-base: 1.5;
@border-radius-base: 4px;
@border-radius-sm: 2px;
|
|
1568
1569
|
// vertical paddings
|
|
1570
1571
1572
1573
|
@padding-lg: 24px; // containers
@padding-md: 16px; // small containers and buttons
@padding-sm: 12px; // Form controls and items
@padding-xs: 8px; // small items
|
|
1574
1575
1576
1577
1578
1579
1580
|
// vertical padding for all form controls
@control-padding-horizontal: @padding-sm;
@control-padding-horizontal-sm: @padding-xs;
// The background colors for active and hover states for things like
// list items or table cells.
|
|
1581
1582
|
@item-active-bg: @primary-1;
@item-hover-bg: @primary-1;
|
|
1583
1584
|
// ICONFONT
|
|
1585
|
@iconfont-css-prefix: anticon;
|
|
1586
1587
|
// LINK
|
|
1588
1589
1590
1591
1592
|
@link-color: @primary-color;
@link-hover-color: color(~`colorPalette("@{link-color}", 5)`);
@link-active-color: color(~`colorPalette("@{link-color}", 7)`);
@link-decoration: none;
@link-hover-decoration: none;
|
|
1593
1594
|
// Animation
|
|
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
|
@ease-base-out: cubic-bezier(0.7, 0.3, 0.1, 1);
@ease-base-in: cubic-bezier(0.9, 0, 0.3, 0.7);
@ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
@ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
@ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
@ease-out-back: cubic-bezier(0.12, 0.4, 0.29, 1.46);
@ease-in-back: cubic-bezier(0.71, -0.46, 0.88, 0.6);
@ease-in-out-back: cubic-bezier(0.71, -0.46, 0.29, 1.46);
@ease-out-circ: cubic-bezier(0.08, 0.82, 0.17, 1);
@ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.34);
@ease-in-out-circ: cubic-bezier(0.78, 0.14, 0.15, 0.86);
@ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
@ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
@ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
|
|
1609
1610
|
// Border color
|
|
1611
1612
1613
1614
|
@border-color-base: hsv(0, 0, 85%); // base border outline a component
@border-color-split: hsv(0, 0, 91%); // split border inside a component
@border-width-base: 1px; // width of the border for a component
@border-style-base: solid; // style of a components border
|
|
1615
1616
|
// Outline
|
|
1617
1618
1619
|
@outline-blur-size: 0;
@outline-width: 2px;
@outline-color: @primary-color;
|
|
1620
|
|
|
1621
1622
|
@background-color-light: hsv(0, 0, 98%); // background of header and selected item
@background-color-base: hsv(0, 0, 96%); // Default grey background color
|
|
1623
1624
|
// Disabled states
|
|
1625
1626
1627
|
@disabled-color: fade(#000, 25%);
@disabled-bg: @background-color-base;
@disabled-color-dark: fade(#fff, 35%);
|
|
1628
1629
|
// Shadow
|
|
1630
1631
1632
1633
1634
1635
1636
|
@shadow-color: rgba(0, 0, 0, .15);
@box-shadow-base: @shadow-1-down;
@shadow-1-up: 0 -2px 8px @shadow-color;
@shadow-1-down: 0 2px 8px @shadow-color;
@shadow-1-left: -2px 0 8px @shadow-color;
@shadow-1-right: 2px 0 8px @shadow-color;
@shadow-2: 0 4px 12px @shadow-color;
|
|
1637
1638
|
// Buttons
|
|
1639
1640
1641
|
@btn-font-weight: 400;
@btn-border-radius-base: @border-radius-base;
@btn-border-radius-sm: @border-radius-base;
|
|
1642
|
|
|
1643
1644
|
@btn-primary-color: #fff;
@btn-primary-bg: @primary-color;
|
|
1645
|
|
|
1646
1647
1648
|
@btn-default-color: @text-color;
@btn-default-bg: #fff;
@btn-default-border: @border-color-base;
|
|
1649
|
|
|
1650
1651
1652
|
@btn-danger-color: @error-color;
@btn-danger-bg: @background-color-base;
@btn-danger-border: @border-color-base;
|
|
1653
|
|
|
1654
1655
1656
|
@btn-disable-color: @disabled-color;
@btn-disable-bg: @disabled-bg;
@btn-disable-border: @border-color-base;
|
|
1657
|
|
|
1658
1659
1660
1661
1662
|
@btn-padding-base: 0 @padding-md - 1px;
@btn-font-size-lg: @font-size-lg;
@btn-font-size-sm: @font-size-base;
@btn-padding-lg: @btn-padding-base;
@btn-padding-sm: 0 @padding-xs - 1px;
|
|
1663
|
|
|
1664
1665
1666
|
@btn-height-base: 32px;
@btn-height-lg: 40px;
@btn-height-sm: 24px;
|
|
1667
|
|
|
1668
1669
1670
|
@btn-circle-size: @btn-height-base;
@btn-circle-size-lg: @btn-height-lg;
@btn-circle-size-sm: @btn-height-sm;
|
|
1671
|
|
|
1672
|
@btn-group-border: @primary-5;
|
|
1673
1674
|
// Checkbox
|
|
1675
1676
1677
|
@checkbox-size: 16px;
@checkbox-color: @primary-color;
@checkbox-check-color: #fff;
|
|
1678
1679
|
// Radio
|
|
1680
1681
|
@radio-size: 16px;
@radio-dot-color: @primary-color;
|
|
1682
1683
|
// Radio buttons
|
|
1684
1685
1686
1687
|
@radio-button-bg: @btn-default-bg;
@radio-button-color: @btn-default-color;
@radio-button-hover-color: @primary-5;
@radio-button-active-color: @primary-7;
|
|
1688
1689
1690
|
// Media queries breakpoints
// Extra small screen / phone
|
|
1691
1692
|
@screen-xs: 480px;
@screen-xs-min: @screen-xs;
|
|
1693
1694
|
// Small screen / tablet
|
|
1695
1696
|
@screen-sm: 576px;
@screen-sm-min: @screen-sm;
|
|
1697
1698
|
// Medium screen / desktop
|
|
1699
1700
|
@screen-md: 768px;
@screen-md-min: @screen-md;
|
|
1701
1702
|
// Large screen / wide desktop
|
|
1703
1704
|
@screen-lg: 992px;
@screen-lg-min: @screen-lg;
|
|
1705
1706
|
// Extra large screen / full hd
|
|
1707
1708
|
@screen-xl: 1200px;
@screen-xl-min: @screen-xl;
|
|
1709
1710
|
// Extra extra large screen / large descktop
|
|
1711
1712
|
@screen-xxl: 1600px;
@screen-xxl-min: @screen-xxl;
|
|
1713
1714
|
// provide a maximum
|
|
1715
1716
1717
1718
1719
|
@screen-xs-max: (@screen-sm-min - 1px);
@screen-sm-max: (@screen-md-min - 1px);
@screen-md-max: (@screen-lg-min - 1px);
@screen-lg-max: (@screen-xl-min - 1px);
@screen-xl-max: (@screen-xxl-min - 1px);
|
|
1720
1721
|
// Grid system
|
|
1722
1723
|
@grid-columns: 24;
@grid-gutter-width: 0;
|
|
1724
1725
|
// Layout
|
|
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
|
@layout-body-background: #f0f2f5;
@layout-header-background: #001529;
@layout-footer-background: @layout-body-background;
@layout-header-height: 64px;
@layout-header-padding: 0 50px;
@layout-footer-padding: 24px 50px;
@layout-sider-background: @layout-header-background;
@layout-trigger-height: 48px;
@layout-trigger-background: #002140;
@layout-trigger-color: #fff;
@layout-zero-trigger-width: 36px;
@layout-zero-trigger-height: 42px;
|
|
1738
|
// Layout light theme
|
|
1739
|
@layout-sider-background-light: #fff;
|
|
1740
|
@layout-trigger-background-light: #fff;
|
|
1741
|
@layout-trigger-color-light: @text-color;
|
|
1742
1743
|
// z-index list
|
|
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
|
@zindex-affix: 10;
@zindex-back-top: 10;
@zindex-modal-mask: 1000;
@zindex-modal: 1000;
@zindex-notification: 1010;
@zindex-message: 1010;
@zindex-popover: 1030;
@zindex-picker: 1050;
@zindex-dropdown: 1050;
@zindex-tooltip: 1060;
|
|
1754
1755
1756
1757
1758
1759
1760
1761
|
// Animation
@animation-duration-slow: .3s; // Modal
@animation-duration-base: .2s;
@animation-duration-fast: .1s; // Tooltip
// Form
// ---
|
|
1762
1763
1764
1765
1766
1767
|
@label-required-color: @highlight-color;
@label-color: @heading-color;
@form-item-margin-bottom: 24px;
@form-item-trailing-colon: true;
@form-vertical-label-padding: 0 0 8px;
@form-vertical-label-margin: 0;
|
|
1768
1769
1770
|
// Input
// ---
|
|
1771
1772
1773
1774
|
@input-height-base: 32px;
@input-height-lg: 40px;
@input-height-sm: 24px;
@input-padding-horizontal: @control-padding-horizontal - 1px;
|
|
1775
|
@input-padding-horizontal-base: @input-padding-horizontal;
|
|
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
|
@input-padding-horizontal-sm: @control-padding-horizontal-sm - 1px;
@input-padding-horizontal-lg: @input-padding-horizontal;
@input-padding-vertical-base: 4px;
@input-padding-vertical-sm: 1px;
@input-padding-vertical-lg: 6px;
@input-placeholder-color: hsv(0, 0, 75%);
@input-color: @text-color;
@input-border-color: @border-color-base;
@input-bg: #fff;
@input-addon-bg: @background-color-light;
@input-hover-border-color: @primary-color;
@input-disabled-bg: @disabled-bg;
@input-outline-offset: 0 0;
|
|
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
|
// Tooltip
// ---
//* Tooltip max width
@tooltip-max-width: 250px;
//** Tooltip text color
@tooltip-color: #fff;
//** Tooltip background color
@tooltip-bg: rgba(0, 0, 0, .75);
//** Tooltip arrow width
@tooltip-arrow-width: 5px;
//** Tooltip distance with trigger
@tooltip-distance: @tooltip-arrow-width - 1px + 4px;
//** Tooltip arrow color
@tooltip-arrow-color: @tooltip-bg;
// Popover
// ---
//** Popover body background color
@popover-bg: #fff;
//** Popover text color
@popover-color: @text-color;
//** Popover maximum width
@popover-min-width: 177px;
//** Popover arrow width
@popover-arrow-width: 6px;
//** Popover arrow color
@popover-arrow-color: @popover-bg;
//** Popover outer arrow width
//** Popover outer arrow color
@popover-arrow-outer-color: @popover-bg;
//** Popover distance with trigger
@popover-distance: @popover-arrow-width + 4px;
// Modal
// --
@modal-mask-bg: rgba(0, 0, 0, 0.65);
// Progress
// --
@progress-default-color: @processing-color;
@progress-remaining-color: @background-color-base;
@progress-text-color: @text-color;
// Menu
// ---
@menu-inline-toplevel-item-height: 40px;
@menu-item-height: 40px;
@menu-collapsed-width: 80px;
@menu-bg: @component-background;
@menu-item-color: @text-color;
@menu-highlight-color: @primary-color;
@menu-item-active-bg: @item-active-bg;
@menu-item-active-border-width: 3px;
@menu-item-group-title-color: @text-color-secondary;
// dark theme
@menu-dark-color: @text-color-secondary-dark;
@menu-dark-bg: @layout-header-background;
@menu-dark-arrow-color: #fff;
@menu-dark-submenu-bg: #000c17;
@menu-dark-highlight-color: #fff;
@menu-dark-item-active-bg: @primary-color;
// Spin
// ---
@spin-dot-size-sm: 14px;
@spin-dot-size: 20px;
@spin-dot-size-lg: 32px;
// Table
// --
@table-header-bg: @background-color-light;
@table-header-color: @heading-color;
@table-header-sort-bg: @background-color-base;
@table-body-sort-bg: rgba(0, 0, 0, .01);
@table-row-hover-bg: @primary-1;
@table-selected-row-bg: #fafafa;
@table-expanded-row-bg: #fbfbfb;
@table-padding-vertical: 16px;
@table-padding-horizontal: 16px;
// Tag
// --
@tag-default-bg: @background-color-light;
@tag-default-color: @text-color;
@tag-font-size: @font-size-sm;
// TimePicker
// ---
@time-picker-panel-column-width: 56px;
@time-picker-panel-width: @time-picker-panel-column-width * 3;
@time-picker-selected-bg: @background-color-base;
// Carousel
// ---
@carousel-dot-width: 16px;
@carousel-dot-height: 3px;
@carousel-dot-active-width: 24px;
// Badge
// ---
@badge-height: 20px;
@badge-dot-size: 6px;
@badge-font-size: @font-size-sm;
@badge-font-weight: normal;
@badge-status-size: 6px;
// Rate
// ---
@rate-star-color: @yellow-6;
@rate-star-bg: @border-color-split;
// Card
// ---
@card-head-color: @heading-color;
@card-head-background: transparent;
@card-head-padding: 16px;
@card-inner-head-padding: 12px;
@card-padding-base: 24px;
@card-padding-wider: 32px;
@card-actions-background: @background-color-light;
@card-shadow: 0 2px 8px rgba(0, 0, 0, .09);
// Tabs
// ---
@tabs-card-head-background: @background-color-light;
@tabs-card-height: 40px;
@tabs-card-active-color: @primary-color;
@tabs-title-font-size: @font-size-base;
@tabs-title-font-size-lg: @font-size-lg;
@tabs-title-font-size-sm: @font-size-base;
@tabs-ink-bar-color: @primary-color;
@tabs-bar-margin: 0 0 16px 0;
@tabs-horizontal-margin: 0 32px 0 0;
@tabs-horizontal-padding: 12px 16px;
@tabs-vertical-padding: 8px 24px;
@tabs-vertical-margin: 0 0 16px 0;
@tabs-scrolling-size: 32px;
@tabs-highlight-color: @primary-color;
@tabs-hover-color: @primary-5;
@tabs-active-color: @primary-7;
// BackTop
// ---
@back-top-color: #fff;
@back-top-bg: @text-color-secondary;
@back-top-hover-bg: @text-color;
// Avatar
// ---
@avatar-size-base: 32px;
@avatar-size-lg: 40px;
@avatar-size-sm: 24px;
@avatar-font-size-base: 18px;
@avatar-font-size-lg: 24px;
@avatar-font-size-sm: 14px;
@avatar-bg: #ccc;
@avatar-color: #fff;
@avatar-border-radius: @border-radius-base;
// Switch
// ---
@switch-height: 22px;
@switch-sm-height: 16px;
@switch-sm-checked-margin-left: -(@switch-sm-height - 3px);
@switch-disabled-opacity: 0.4;
@switch-color: @primary-color;
// Pagination
// ---
@pagination-item-size: 32px;
@pagination-item-size-sm: 24px;
@pagination-font-family: Arial;
@pagination-font-weight-active: 500;
// Breadcrumb
// ---
|
|
1966
1967
1968
1969
1970
1971
1972
1973
|
@breadcrumb-base-color: @text-color-secondary;
@breadcrumb-last-item-color: @text-color;
@breadcrumb-font-size: @font-size-base;
@breadcrumb-icon-font-size: @font-size-base;
@breadcrumb-link-color: @text-color-secondary;
@breadcrumb-link-color-hover: @primary-5;
@breadcrumb-separator-color: @text-color-secondary;
@breadcrumb-separator-margin: 0 @padding-xs;
|
|
1974
1975
1976
|
// Slider
// ---
|
|
1977
1978
1979
1980
|
@slider-margin: 14px 6px 10px;
@slider-rail-background-color: @background-color-base;
@slider-rail-background-color-hover: #e1e1e1;
@slider-track-background-color: @primary-3;
|
|
1981
|
@slider-track-background-color-hover: @primary-4;
|
|
1982
1983
1984
1985
1986
1987
1988
1989
1990
|
@slider-handle-color: @primary-3;
@slider-handle-color-hover: @primary-4;
@slider-handle-color-focus: tint(@primary-color, 20%);
@slider-handle-color-focus-shadow: tint(@primary-color, 50%);
@slider-handle-color-tooltip-open: @primary-color;
@slider-dot-border-color: @border-color-split;
@slider-dot-border-color-active: tint(@primary-color, 50%);
@slider-disabled-color: @disabled-color;
@slider-disabled-background-color: @component-background;
|
|
1991
1992
1993
|
// Tree
// ---
|
|
1994
1995
1996
1997
|
@tree-title-height: 24px;
@tree-child-padding: 18px;
@tree-directory-selected-color: #fff;
@tree-directory-selected-bg: @primary-color;
|
|
1998
1999
2000
|
// Collapse
// ---
|
|
2001
2002
2003
2004
|
@collapse-header-padding: 12px 0 12px 40px;
@collapse-header-bg: @background-color-light;
@collapse-content-padding: @padding-md;
@collapse-content-bg: @component-background;
|
|
2005
2006
2007
|
// Skeleton
// ---
|
|
2008
|
@skeleton-color: #f2f2f2;
|
|
2009
2010
2011
|
// Transfer
// ---
|
|
2012
|
@transfer-disabled-bg: @disabled-bg;
|
|
2013
2014
2015
|
// Message
// ---
|
|
2016
|
@message-notice-content-padding: 10px 16px;
|
|
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
|
// Motion
// ---
@wave-animation-width: 6px;
// Alert
// ---
@alert-success-border-color: ~`colorPalette("@{success-color}", 3)`;
@alert-success-bg-color: ~`colorPalette("@{success-color}", 1)`;
@alert-success-icon-color: @success-color;
@alert-info-border-color: ~`colorPalette("@{info-color}", 3)`;
@alert-info-bg-color: ~`colorPalette("@{info-color}", 1)`;
@alert-info-icon-color: @info-color;
@alert-warning-border-color: ~`colorPalette("@{warning-color}", 3)`;
@alert-warning-bg-color: ~`colorPalette("@{warning-color}", 1)`;
@alert-warning-icon-color: @warning-color;
@alert-error-border-color: ~`colorPalette("@{error-color}", 3)`;
@alert-error-bg-color: ~`colorPalette("@{error-color}", 1)`;
@alert-error-icon-color: @error-color;
// List
// ---
|
|
2039
2040
2041
2042
2043
2044
|
@list-empty-text-padding: @padding-md;
@list-item-padding: @padding-sm 0;
@list-item-content-margin: 0 0 @padding-md 0;
@list-item-meta-margin-bottom: @padding-md;
@list-item-meta-avatar-margin-right: @padding-md;
@list-item-meta-title-margin-bottom: @padding-sm;
|
|
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
|
// Menu
@menu-dark-item-selected-bg: @menu-dark-item-active-bg;
// Tabs
@tab-bar-margin: @tabs-bar-margin;
@tab-horizontal-margin: @tabs-horizontal-margin;
@tab-vertical-margin: @tabs-vertical-margin;
@tab-horizontal-padding: @tabs-horizontal-padding;
@tab-vertical-padding: @tabs-vertical-padding;
@tab-scrolling-size: @tabs-scrolling-size;
@tab-highlight-color: @tabs-highlight-color;
@tab-hover-color: @tabs-hover-color;
@tab-active-color: @tabs-active-color;
@tabs-ink-bar-bg-color: @tabs-ink-bar-color;
.listContent .extra {
color: rgba(0, 0, 0, 0.45);
}
|
|
2064
|
|
|
2065
2066
2067
|
.listContent .extra > em {
color: rgba(0, 0, 0, 0.25);
}
|
|
2068
|
|
|
2069
2070
2071
|
.avatarItem :global .ant-avatar {
border: 1px solid #fff;
}
|
|
2072
|
|
|
2073
2074
2075
|
.chartCard .avatar img {
border-radius: 100%;
}
|
|
2076
|
|
|
2077
2078
2079
|
.chartCard .meta {
color: rgba(0, 0, 0, 0.45);
}
|
|
2080
|
|
|
2081
2082
2083
|
.chartCard .total {
color: rgba(0, 0, 0, 0.85);
}
|
|
2084
|
|
|
2085
2086
2087
|
.chartCard .footer {
border-top: 1px solid #e8e8e8;
}
|
|
2088
|
|
|
2089
2090
2091
|
.field span:last-child {
color: rgba(0, 0, 0, 0.85);
}
|
|
2092
|
|
|
2093
2094
2095
|
.miniProgress .progressWrap {
background-color: #f5f5f5;
}
|
|
2096
|
|
|
2097
2098
2099
2100
|
.miniProgress .progress {
border-radius: 1px 0 0 1px;
background-color: @primary-color;
}
|
|
2101
|
|
|
2102
2103
2104
|
.miniProgress .target span {
border-radius: 100px;
}
|
|
2105
|
|
|
2106
2107
2108
|
.pie .dot {
border-radius: 8px;
}
|
|
2109
|
|
|
2110
2111
2112
|
.pie .line {
background-color: #e8e8e8;
}
|
|
2113
|
|
|
2114
2115
2116
|
.pie .legendTitle {
color: rgba(0, 0, 0, 0.65);
}
|
|
2117
|
|
|
2118
2119
2120
|
.pie .percent {
color: rgba(0, 0, 0, 0.45);
}
|
|
2121
|
|
|
2122
2123
2124
|
.pie .total > h4 {
color: rgba(0, 0, 0, 0.45);
}
|
|
2125
|
|
|
2126
2127
2128
|
.pie .total > p {
color: rgba(0, 0, 0, 0.85);
}
|
|
2129
|
|
|
2130
2131
2132
|
.radar .legend .legendItem {
color: rgba(0, 0, 0, 0.45);
}
|
|
2133
|
|
|
2134
2135
2136
|
.radar .legend .legendItem h6 {
color: rgba(0, 0, 0, 0.85);
}
|
|
2137
|
|
|
2138
2139
2140
|
.radar .legend .legendItem:after {
background-color: #e8e8e8;
}
|
|
2141
|
|
|
2142
2143
2144
2145
2146
2147
2148
|
.radar .legend .dot {
border-radius: 6px;
}
.timelineChart {
background: #fff;
}
|
|
2149
|
|
|
2150
2151
2152
|
.waterWave .text span {
color: rgba(0, 0, 0, 0.45);
}
|
|
2153
|
|
|
2154
2155
2156
|
.waterWave .text h4 {
color: rgba(0, 0, 0, 0.85);
}
|
|
2157
|
|
|
2158
2159
2160
|
.descriptionList .title {
color: rgba(0, 0, 0, 0.85);
}
|
|
2161
|
|
|
2162
2163
2164
|
.descriptionList .term {
color: rgba(0, 0, 0, 0.85);
}
|
|
2165
|
|
|
2166
2167
2168
|
.descriptionList .detail {
color: rgba(0, 0, 0, 0.65);
}
|
|
2169
|
|
|
2170
2171
2172
|
.descriptionList.small .title {
color: rgba(0, 0, 0, 0.65);
}
|
|
2173
|
|
|
2174
2175
2176
|
.linkGroup > a {
color: rgba(0, 0, 0, 0.65);
}
|
|
2177
|
|
|
2178
2179
2180
|
.linkGroup > a:hover {
color: @primary-color;
}
|
|
2181
|
|
|
2182
2183
2184
|
.lines .shadow {
color: transparent;
}
|
|
2185
|
|
|
2186
2187
2188
2189
2190
|
.exception .imgEle {
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: contain;
}
|
|
2191
|
|
|
2192
2193
2194
|
.exception .content h1 {
color: #434e59;
}
|
|
2195
|
|
|
2196
2197
2198
|
.exception .content .desc {
color: rgba(0, 0, 0, 0.45);
}
|
|
2199
|
|
|
2200
2201
2202
2203
2204
|
.toolbar {
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.03);
background: #fff;
border-top: 1px solid #e8e8e8;
}
|
|
2205
|
|
|
2206
2207
2208
|
.globalFooter .links a {
color: rgba(0, 0, 0, 0.45);
}
|
|
2209
|
|
|
2210
2211
2212
|
.globalFooter .links a:hover {
color: rgba(0, 0, 0, 0.65);
}
|
|
2213
|
|
|
2214
2215
2216
|
.globalFooter .copyright {
color: rgba(0, 0, 0, 0.45);
}
|
|
2217
|
|
|
2218
2219
2220
|
.layout .header {
background-color: @primary-color !important;
}
|
|
2221
|
|
|
2222
2223
2224
|
i.trigger:hover {
background: rgba(0, 0, 0, 0.025);
}
|
|
2225
|
|
|
2226
2227
2228
|
.right .action > i {
color: rgba(0, 0, 0, 0.65);
}
|
|
2229
|
|
|
2230
2231
2232
|
.right .action:hover {
background: rgba(0, 0, 0, 0.025);
}
|
|
2233
|
|
|
2234
2235
2236
|
:global(.right .action.ant-popover-open) {
background: rgba(0, 0, 0, 0.025);
}
|
|
2237
|
|
|
2238
2239
2240
|
.right .search:hover {
background: transparent;
}
|
|
2241
|
|
|
2242
2243
2244
2245
|
.right .account .avatar {
color: @primary-color;
background: rgba(255, 255, 255, 0.85);
}
|
|
2246
|
|
|
2247
2248
2249
|
.dark .action {
color: rgba(255, 255, 255, 0.85);
}
|
|
2250
|
|
|
2251
2252
2253
|
.dark .action > i {
color: rgba(255, 255, 255, 0.85);
}
|
|
2254
|
|
|
2255
2256
2257
2258
|
.dark .action:hover,
.dark .action:global(.ant-popover-open) {
background: @primary-color;
}
|
|
2259
|
|
|
2260
2261
2262
|
.dark .action :global(.ant-badge) {
color: rgba(255, 255, 255, 0.85);
}
|
|
2263
|
|
|
2264
2265
2266
2267
|
.headerSearch .input {
background: transparent;
border-radius: 0;
}
|
|
2268
|
|
|
2269
2270
2271
|
.headerSearch .input :global(.ant-select-selection) {
background: transparent;
}
|
|
2272
|
|
|
2273
2274
2275
2276
|
.headerSearch .input input {
border: 0;
box-shadow: none !important;
}
|
|
2277
|
|
|
2278
2279
2280
2281
2282
|
.headerSearch .input,
.headerSearch .input:hover,
.headerSearch .input:focus {
border-bottom: 1px solid #d9d9d9;
}
|
|
2283
|
|
|
2284
2285
2286
|
.login :global .ant-tabs .ant-tabs-bar {
border-bottom: 0;
}
|
|
2287
|
|
|
2288
2289
2290
|
.login .icon {
color: rgba(0, 0, 0, 0.2);
}
|
|
2291
|
|
|
2292
2293
2294
|
.login .icon:hover {
color: @primary-color;
}
|
|
2295
|
|
|
2296
2297
2298
|
.login .prefixIcon {
color: rgba(0, 0, 0, 0.25);
}
|
|
2299
|
|
|
2300
2301
2302
|
.list .item .avatar {
background: #fff;
}
|
|
2303
|
|
|
2304
2305
2306
|
.list .item:last-child {
border-bottom: 0;
}
|
|
2307
|
|
|
2308
2309
2310
|
.list .item:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
2311
|
|
|
2312
2313
2314
|
.list .item .extra {
color: rgba(0, 0, 0, 0.45);
}
|
|
2315
|
|
|
2316
2317
2318
|
.notFound {
color: rgba(0, 0, 0, 0.45);
}
|
|
2319
|
|
|
2320
2321
2322
2323
2324
|
.clear {
color: rgba(0, 0, 0, 0.65);
border-radius: 0 0 4px 4px;
border-top: 1px solid #e8e8e8;
}
|
|
2325
|
|
|
2326
2327
2328
|
.clear:hover {
color: rgba(0, 0, 0, 0.85);
}
|
|
2329
|
|
|
2330
2331
2332
|
.numberInfo .suffix {
color: rgba(0, 0, 0, 0.65);
}
|
|
2333
|
|
|
2334
2335
2336
|
.numberInfo .numberInfoTitle {
color: rgba(0, 0, 0, 0.65);
}
|
|
2337
|
|
|
2338
2339
2340
|
.numberInfo .numberInfoSubTitle {
color: rgba(0, 0, 0, 0.45);
}
|
|
2341
|
|
|
2342
2343
2344
|
.numberInfo .numberInfoValue > span {
color: rgba(0, 0, 0, 0.85);
}
|
|
2345
|
|
|
2346
2347
2348
|
.numberInfo .numberInfoValue .subTotal {
color: rgba(0, 0, 0, 0.45);
}
|
|
2349
|
|
|
2350
2351
2352
|
.numberInfo .numberInfoValue .subTotal :global .anticon-caret-up {
color: #f5222d;
}
|
|
2353
|
|
|
2354
2355
2356
|
.numberInfo .numberInfoValue .subTotal :global .anticon-caret-down {
color: #52c41a;
}
|
|
2357
|
|
|
2358
2359
2360
|
.numberInfolight .numberInfoValue > span {
color: rgba(0, 0, 0, 0.65);
}
|
|
2361
|
|
|
2362
2363
2364
2365
|
.pageHeader {
background: #fff;
border-bottom: 1px solid #e8e8e8;
}
|
|
2366
|
|
|
2367
2368
2369
|
.pageHeader .tabs :global .ant-tabs-bar {
border-bottom: 1px solid #e8e8e8;
}
|
|
2370
|
|
|
2371
2372
2373
|
.pageHeader .logo > img {
border-radius: 4px;
}
|
|
2374
|
|
|
2375
2376
2377
|
.pageHeader .title {
color: rgba(0, 0, 0, 0.85);
}
|
|
2378
|
|
|
2379
2380
2381
|
.result .icon > .success {
color: #52c41a;
}
|
|
2382
|
|
|
2383
2384
2385
|
.result .icon > .error {
color: #f5222d;
}
|
|
2386
|
|
|
2387
2388
2389
|
.result .title {
color: rgba(0, 0, 0, 0.85);
}
|
|
2390
|
|
|
2391
2392
2393
|
.result .description {
color: rgba(0, 0, 0, 0.45);
}
|
|
2394
|
|
|
2395
2396
2397
2398
|
.result .extra {
background: #fafafa;
border-radius: 2px;
}
|
|
2399
|
|
|
2400
2401
2402
|
.blockChecbox .item {
border-radius: 4px;
}
|
|
2403
|
|
|
2404
2405
2406
|
.blockChecbox .selectIcon {
color: @primary-color;
}
|
|
2407
|
|
|
2408
2409
2410
|
.color_block {
border-radius: 4px;
}
|
|
2411
|
|
|
2412
2413
2414
|
.title {
color: rgba(0, 0, 0, 0.85);
}
|
|
2415
|
|
|
2416
2417
2418
2419
|
.handle {
background: @primary-color;
border-radius: 4px 0 0 4px;
}
|
|
2420
|
|
|
2421
2422
2423
2424
|
.setting-drawer-index-handle {
/* 暂时不知道放哪解决 */
background: @primary-color !important;
}
|
|
2425
|
|
|
2426
2427
2428
|
.themeColor .title {
color: rgba(0, 0, 0, 0.65);
}
|
|
2429
|
|
|
2430
2431
2432
2433
|
.themeColor .colorBlock {
border-radius: 2px;
color: #fff;
}
|
|
2434
|
|
|
2435
2436
2437
|
.logo h1 {
color: white;
}
|
|
2438
|
|
|
2439
2440
2441
|
.sider {
box-shadow: 2px 116px 6px rgba(0, 21, 41, 0.35);
}
|
|
2442
|
|
|
2443
2444
2445
2446
|
.sider.light {
box-shadow: 2px 116px 8px 0 rgba(29, 35, 41, 0.05);
background-color: white;
}
|
|
2447
|
|
|
2448
2449
2450
2451
|
.sider.light .logo {
background-color: @primary-color !important;
box-shadow: 1px 1px 0 0 #e8e8e8;
}
|
|
2452
|
|
|
2453
2454
2455
|
.sider.light .logo h1 {
color: white;
}
|
|
2456
|
|
|
2457
2458
2459
|
.sider.light :global(.ant-menu-light) {
border-right-color: transparent;
}
|
|
2460
|
|
|
2461
2462
2463
|
:global .drawer .drawer-content {
background: #001529;
}
|
|
2464
|
|
|
2465
2466
2467
|
.standardFormRow {
border-bottom: 1px dashed #e8e8e8;
}
|
|
2468
|
|
|
2469
2470
2471
|
.standardFormRow :global .ant-form-item-label label {
color: rgba(0, 0, 0, 0.65);
}
|
|
2472
|
|
|
2473
2474
2475
|
.standardFormRow .label {
color: rgba(0, 0, 0, 0.85);
}
|
|
2476
|
|
|
2477
2478
2479
2480
2481
2482
2483
|
.standardFormRowLast {
border: none;
}
.head {
box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
}
|
|
2484
|
|
|
2485
2486
2487
|
.head.light {
background-color: #fff;
}
|
|
2488
|
|
|
2489
2490
2491
|
.logo h1 {
color: #fff;
}
|
|
2492
|
|
|
2493
2494
2495
|
.light h1 {
color: #002140;
}
|
|
2496
|
|
|
2497
2498
2499
|
.trendItem .up {
color: #f5222d;
}
|
|
2500
|
|
|
2501
2502
2503
|
.trendItem .down {
color: #52c41a;
}
|
|
2504
|
|
|
2505
2506
2507
2508
|
.trendItem.trendItemGrey .up,
.trendItem.trendItemGrey .down {
color: rgba(0, 0, 0, 0.65);
}
|
|
2509
|
|
|
2510
2511
2512
|
.trendItem.reverseColor .up {
color: #52c41a;
}
|
|
2513
|
|
|
2514
2515
2516
|
.trendItem.reverseColor .down {
color: #f5222d;
}
|
|
2517
|
|
|
2518
2519
2520
|
.container {
background: #f0f2f5;
}
|
|
2521
|
|
|
2522
2523
2524
|
.title {
color: rgba(0, 0, 0, 0.85);
}
|
|
2525
|
|
|
2526
2527
2528
|
.desc {
color: rgba(0, 0, 0, 0.45);
}
|
|
2529
|
|
|
2530
2531
2532
|
a.listItemMetaTitle {
color: rgba(0, 0, 0, 0.85);
}
|
|
2533
|
|
|
2534
2535
2536
|
.baseView .right .avatar_title {
color: rgba(0, 0, 0, 0.85);
}
|
|
2537
|
|
|
2538
2539
2540
2541
2542
|
.main {
//update-begin---author:liusq Date:20210108 for:[JT-409]编译主题色,然后退出登录后的首页是这样子------------
//background-color: #fff;
//update-end---author:liusq Date:20210108 for:[JT-409]编译主题色,然后退出登录后的首页是这样子------------
}
|
|
2543
|
|
|
2544
2545
2546
|
.main .leftmenu {
border-right: 1px solid #e8e8e8;
}
|
|
2547
|
|
|
2548
2549
2550
|
.main .leftmenu :global .ant-menu-inline {
border: none;
}
|
|
2551
|
|
|
2552
2553
2554
|
.main .right .title {
color: rgba(0, 0, 0, 0.85);
}
|
|
2555
|
|
|
2556
2557
2558
|
.main :global .ant-list-split .ant-list-item:last-child {
border-bottom: 1px solid #e8e8e8;
}
|
|
2559
|
|
|
2560
2561
2562
2563
|
:global .ant-list-item-meta .taobao {
color: #ff4000;
border-radius: 4px;
}
|
|
2564
|
|
|
2565
2566
2567
2568
2569
|
:global .ant-list-item-meta .dingding {
background-color: #2eabff;
color: #fff;
border-radius: 4px;
}
|
|
2570
|
|
|
2571
2572
2573
2574
|
:global .ant-list-item-meta .alipay {
color: #2eabff;
border-radius: 4px;
}
|
|
2575
|
|
|
2576
2577
2578
|
:global font.strong {
color: #52c41a;
}
|
|
2579
|
|
|
2580
2581
2582
|
:global font.medium {
color: #faad14;
}
|
|
2583
|
|
|
2584
2585
2586
2587
2588
2589
2590
2591
|
:global font.weak {
color: #f5222d;
}
.trigger {
background: 'red';
}
|
|
2592
|
|
|
2593
2594
2595
|
.desc {
color: rgba(0, 0, 0, 0.45);
}
|
|
2596
|
|
|
2597
2598
2599
|
.desc h3 {
color: rgba(0, 0, 0, 0.45);
}
|
|
2600
|
|
|
2601
2602
2603
|
.desc h4 {
color: rgba(0, 0, 0, 0.45);
}
|
|
2604
|
|
|
2605
2606
2607
|
.information .label {
color: rgba(0, 0, 0, 0.85);
}
|
|
2608
|
|
|
2609
2610
2611
|
.errorIcon {
color: #f5222d;
}
|
|
2612
|
|
|
2613
2614
2615
|
.errorListItem {
border-bottom: 1px solid #e8e8e8;
}
|
|
2616
|
|
|
2617
2618
2619
|
.errorListItem:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
2620
|
|
|
2621
2622
2623
|
.errorListItem:last-child {
border: 0;
}
|
|
2624
|
|
|
2625
2626
2627
|
.errorListItem .errorIcon {
color: #f5222d;
}
|
|
2628
|
|
|
2629
2630
2631
|
.errorListItem .errorField {
color: rgba(0, 0, 0, 0.45);
}
|
|
2632
|
|
|
2633
2634
2635
|
.optional {
color: rgba(0, 0, 0, 0.45);
}
|
|
2636
|
|
|
2637
2638
2639
|
a.listItemMetaTitle {
color: rgba(0, 0, 0, 0.85);
}
|
|
2640
|
|
|
2641
2642
2643
|
.noData {
color: rgba(0, 0, 0, 0.25);
}
|
|
2644
|
|
|
2645
2646
2647
|
.heading {
color: rgba(0, 0, 0, 0.85);
}
|
|
2648
|
|
|
2649
2650
2651
|
.textSecondary {
color: rgba(0, 0, 0, 0.45);
}
|
|
2652
|
|
|
2653
2654
2655
|
.title {
color: rgba(0, 0, 0, 0.85);
}
|
|
2656
|
|
|
2657
2658
2659
|
.main .icon {
color: rgba(0, 0, 0, 0.2);
}
|
|
2660
|
|
|
2661
2662
2663
|
.main .icon:hover {
color: @primary-color;
}
|
|
2664
|
|
|
2665
2666
2667
|
.success {
color: #52c41a;
}
|
|
2668
|
|
|
2669
2670
2671
|
.warning {
color: #faad14;
}
|
|
2672
|
|
|
2673
2674
2675
|
.error {
color: #f5222d;
}
|
|
2676
|
|
|
2677
2678
2679
|
.progress-pass > .progress :global .ant-progress-bg {
background-color: #faad14;
}
|
|
2680
|
|
|
2681
2682
2683
|
html {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
|
|
2684
|
|
|
2685
2686
2687
2688
|
body {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
}
|
|
2689
|
|
|
2690
2691
2692
2693
2694
2695
2696
2697
|
h1,
h2,
h3,
h4,
h5,
h6 {
color: rgba(0, 0, 0, 0.85);
}
|
|
2698
|
|
|
2699
2700
2701
2702
|
abbr[title],
abbr[data-original-title] {
border-bottom: 0;
}
|
|
2703
|
|
|
2704
2705
2706
2707
|
a {
color: @primary-color;
background-color: transparent;
}
|
|
2708
|
|
|
2709
2710
2711
|
a:hover {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
2712
|
|
|
2713
2714
2715
|
a:active {
color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
2716
|
|
|
2717
2718
2719
|
a[disabled] {
color: rgba(0, 0, 0, 0.25);
}
|
|
2720
|
|
|
2721
2722
2723
|
img {
border-style: none;
}
|
|
2724
|
|
|
2725
2726
2727
|
table {
border-collapse: collapse;
}
|
|
2728
|
|
|
2729
2730
2731
|
caption {
color: rgba(0, 0, 0, 0.45);
}
|
|
2732
|
|
|
2733
2734
2735
2736
2737
2738
2739
|
input,
button,
select,
optgroup,
textarea {
color: inherit;
}
|
|
2740
|
|
|
2741
2742
2743
2744
2745
2746
|
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
}
|
|
2747
|
|
|
2748
2749
2750
|
fieldset {
border: 0;
}
|
|
2751
|
|
|
2752
2753
2754
|
legend {
color: inherit;
}
|
|
2755
|
|
|
2756
2757
2758
|
mark {
background-color: #feffe6;
}
|
|
2759
|
|
|
2760
2761
2762
2763
|
::selection {
background: @primary-color;
color: #fff;
}
|
|
2764
|
|
|
2765
2766
2767
2768
2769
|
[ant-click-animating-without-extra-node]:after,
.ant-click-animating-node {
border-radius: inherit;
border: 0 solid @primary-color;
}
|
|
2770
|
|
|
2771
2772
2773
2774
|
.ant-alert {
color: rgba(0, 0, 0, 0.65);
border-radius: 4px;
}
|
|
2775
|
|
|
2776
2777
2778
2779
|
.ant-alert-success {
border: 1px solid #b7eb8f;
background-color: #f6ffed;
}
|
|
2780
|
|
|
2781
2782
2783
|
.ant-alert-success .ant-alert-icon {
color: #52c41a;
}
|
|
2784
|
|
|
2785
2786
2787
2788
|
.ant-alert-info {
border: 1px solid color(~`colorPalette("@{primary-color}", 3)`);
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
2789
|
|
|
2790
2791
2792
|
.ant-alert-info .ant-alert-icon {
color: @primary-color;
}
|
|
2793
|
|
|
2794
2795
2796
2797
|
.ant-alert-warning {
border: 1px solid #ffe58f;
background-color: #fffbe6;
}
|
|
2798
|
|
|
2799
2800
2801
|
.ant-alert-warning .ant-alert-icon {
color: #faad14;
}
|
|
2802
|
|
|
2803
2804
2805
2806
|
.ant-alert-error {
border: 1px solid #ffa39e;
background-color: #fff1f0;
}
|
|
2807
|
|
|
2808
2809
2810
|
.ant-alert-error .ant-alert-icon {
color: #f5222d;
}
|
|
2811
|
|
|
2812
2813
2814
|
.ant-alert-close-icon .anticon-close {
color: rgba(0, 0, 0, 0.45);
}
|
|
2815
|
|
|
2816
2817
2818
|
.ant-alert-close-icon .anticon-close:hover {
color: #404040;
}
|
|
2819
|
|
|
2820
2821
2822
2823
|
.ant-alert-with-description {
border-radius: 4px;
color: rgba(0, 0, 0, 0.65);
}
|
|
2824
|
|
|
2825
2826
2827
|
.ant-alert-with-description .ant-alert-message {
color: rgba(0, 0, 0, 0.85);
}
|
|
2828
|
|
|
2829
2830
2831
2832
|
.ant-alert-banner {
border-radius: 0;
border: 0;
}
|
|
2833
|
|
|
2834
2835
2836
|
.ant-anchor {
color: rgba(0, 0, 0, 0.65);
}
|
|
2837
|
|
|
2838
2839
2840
|
.ant-anchor-wrapper {
background-color: #fff;
}
|
|
2841
|
|
|
2842
2843
2844
|
.ant-anchor-ink:before {
background-color: #e8e8e8;
}
|
|
2845
|
|
|
2846
2847
2848
2849
2850
|
.ant-anchor-ink-ball {
border-radius: 8px;
border: 2px solid @primary-color;
background-color: #fff;
}
|
|
2851
|
|
|
2852
2853
2854
|
.ant-anchor-link-title {
color: rgba(0, 0, 0, 0.65);
}
|
|
2855
|
|
|
2856
2857
2858
|
.ant-anchor-link-active > .ant-anchor-link-title {
color: @primary-color;
}
|
|
2859
|
|
|
2860
2861
2862
|
.ant-select-auto-complete {
color: rgba(0, 0, 0, 0.65);
}
|
|
2863
|
|
|
2864
2865
2866
2867
|
.ant-select-auto-complete.ant-select .ant-select-selection {
border: 0;
box-shadow: none;
}
|
|
2868
|
|
|
2869
2870
2871
2872
|
.ant-select-auto-complete.ant-select .ant-input {
background: transparent;
border-width: 1px;
}
|
|
2873
|
|
|
2874
2875
2876
2877
2878
|
.ant-select-auto-complete.ant-select .ant-input:focus,
.ant-select-auto-complete.ant-select .ant-input:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
2879
|
|
|
2880
2881
2882
2883
2884
2885
|
.ant-avatar {
color: rgba(0, 0, 0, 0.65);
background: #ccc;
color: #fff;
border-radius: 50%;
}
|
|
2886
|
|
|
2887
2888
2889
|
.ant-avatar-image {
background: transparent;
}
|
|
2890
|
|
|
2891
2892
2893
|
.ant-avatar-lg {
border-radius: 50%;
}
|
|
2894
|
|
|
2895
2896
2897
|
.ant-avatar-sm {
border-radius: 50%;
}
|
|
2898
|
|
|
2899
2900
2901
|
.ant-avatar-square {
border-radius: 4px;
}
|
|
2902
|
|
|
2903
2904
2905
|
.ant-back-top {
color: rgba(0, 0, 0, 0.65);
}
|
|
2906
|
|
|
2907
2908
2909
2910
2911
|
.ant-back-top-content {
border-radius: 20px;
background-color: rgba(0, 0, 0, 0.45);
color: #fff;
}
|
|
2912
|
|
|
2913
2914
2915
|
.ant-back-top-content:hover {
background-color: rgba(0, 0, 0, 0.65);
}
|
|
2916
|
|
|
2917
2918
2919
|
.ant-back-top-icon {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAoCAYAAACWwljjAAAABGdBTUEAALGPC/xhBQAAAbtJREFUWAntmMtKw0AUhhMvS5cuxILgQlRUpIggIoKIIoigG1eC+AA+jo+i6FIXBfeuXIgoeKVeitVWJX5HWhhDksnUpp3FDPyZk3Nm5nycmZKkXhAEOXSA3lG7muTeRzmfy6HneUvIhnYkQK+Q9NhAA0Opg0vBEhjBKHiyb8iGMyQMOYuK41BcBSypAL+MYXSKjtFAW7EAGEO3qN4uMQbbAkXiSfRQJ1H6a+yhlkKRcAoVFYiweYNjtCVQJJpBz2GCiPt7fBOZQpFgDpUikse5HgnkM4Fi4QX0Fpc5wf9EbLqpUCy4jMoJSXWhFwbMNgWKhVbRhy5jirhs9fy/oFhgHVVTJEs7RLZ8sSEoJm6iz7SZDMbJ+/OKERQTttCXQRLToRUmrKWCYuA2+jbN0MB4OQobYShfdTCgn/sL1K36M7TLrN3n+758aPy2rrpR6+/od5E8tf/A1uLS9aId5T7J3CNYihkQ4D9PiMdMC7mp4rjB9kjFjZp8BlnVHJBuO1yFXIV0FdDF3RlyFdJVQBdv5AxVdIsq8apiZ2PyYO1EVykesGfZEESsCkweyR8MUW+V8uJ1gkYipmpdP1pm2aJVPEGzAAAAAElFTkSuQmCC) 100%/100% no-repeat;
}
|
|
2920
|
|
|
2921
2922
2923
2924
|
.ant-badge {
color: rgba(0, 0, 0, 0.65);
color: unset;
}
|
|
2925
|
|
|
2926
2927
2928
2929
2930
2931
|
.ant-badge-count {
border-radius: 10px;
background: #f5222d;
color: #fff;
box-shadow: 0 0 0 1px #fff;
}
|
|
2932
|
|
|
2933
2934
2935
2936
|
.ant-badge-count a,
.ant-badge-count a:hover {
color: #fff;
}
|
|
2937
|
|
|
2938
2939
2940
2941
2942
|
.ant-badge-dot {
border-radius: 100%;
background: #f5222d;
box-shadow: 0 0 0 1px #fff;
}
|
|
2943
|
|
|
2944
2945
2946
|
.ant-badge-status-dot {
border-radius: 50%;
}
|
|
2947
|
|
|
2948
2949
2950
|
.ant-badge-status-success {
background-color: #52c41a;
}
|
|
2951
|
|
|
2952
2953
2954
|
.ant-badge-status-processing {
background-color: @primary-color;
}
|
|
2955
|
|
|
2956
2957
2958
2959
|
.ant-badge-status-processing:after {
border-radius: 50%;
border: 1px solid @primary-color;
}
|
|
2960
|
|
|
2961
2962
2963
|
.ant-badge-status-default {
background-color: #d9d9d9;
}
|
|
2964
|
|
|
2965
2966
2967
|
.ant-badge-status-error {
background-color: #f5222d;
}
|
|
2968
|
|
|
2969
2970
2971
|
.ant-badge-status-warning {
background-color: #faad14;
}
|
|
2972
|
|
|
2973
2974
2975
|
.ant-badge-status-text {
color: rgba(0, 0, 0, 0.65);
}
|
|
2976
|
|
|
2977
2978
2979
2980
|
.ant-breadcrumb {
color: rgba(0, 0, 0, 0.65);
color: rgba(0, 0, 0, 0.45);
}
|
|
2981
|
|
|
2982
2983
2984
|
.ant-breadcrumb a {
color: rgba(0, 0, 0, 0.45);
}
|
|
2985
|
|
|
2986
2987
2988
|
.ant-breadcrumb a:hover {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
2989
|
|
|
2990
2991
2992
|
.ant-breadcrumb > span:last-child {
color: rgba(0, 0, 0, 0.65);
}
|
|
2993
|
|
|
2994
2995
2996
|
.ant-breadcrumb-separator {
color: rgba(0, 0, 0, 0.45);
}
|
|
2997
|
|
|
2998
2999
3000
3001
3002
3003
3004
3005
3006
|
.ant-btn {
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
border-color: #d9d9d9;
}
|
|
3007
|
|
|
3008
3009
3010
|
.ant-btn:not([disabled]):active {
box-shadow: none;
}
|
|
3011
|
|
|
3012
3013
3014
|
.ant-btn-lg {
border-radius: 4px;
}
|
|
3015
|
|
|
3016
3017
3018
|
.ant-btn-sm {
border-radius: 4px;
}
|
|
3019
|
|
|
3020
3021
3022
|
.ant-btn > a:only-child {
color: currentColor;
}
|
|
3023
|
|
|
3024
3025
3026
|
.ant-btn > a:only-child:after {
background: transparent;
}
|
|
3027
|
|
|
3028
3029
3030
3031
3032
3033
|
.ant-btn:hover,
.ant-btn:focus {
color: color(~`colorPalette("@{primary-color}", 5)`);
background-color: #fff;
border-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
3034
|
|
|
3035
3036
3037
3038
|
.ant-btn:hover > a:only-child,
.ant-btn:focus > a:only-child {
color: currentColor;
}
|
|
3039
|
|
|
3040
3041
3042
3043
|
.ant-btn:hover > a:only-child:after,
.ant-btn:focus > a:only-child:after {
background: transparent;
}
|
|
3044
|
|
|
3045
3046
3047
3048
3049
3050
|
.ant-btn:active,
.ant-btn.active {
color: color(~`colorPalette("@{primary-color}", 7)`);
background-color: #fff;
border-color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
3051
|
|
|
3052
3053
3054
3055
|
.ant-btn:active > a:only-child,
.ant-btn.active > a:only-child {
color: currentColor;
}
|
|
3056
|
|
|
3057
3058
3059
3060
|
.ant-btn:active > a:only-child:after,
.ant-btn.active > a:only-child:after {
background: transparent;
}
|
|
3061
|
|
|
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
|
.ant-btn.disabled,
.ant-btn[disabled],
.ant-btn.disabled:hover,
.ant-btn[disabled]:hover,
.ant-btn.disabled:focus,
.ant-btn[disabled]:focus,
.ant-btn.disabled:active,
.ant-btn[disabled]:active,
.ant-btn.disabled.active,
.ant-btn[disabled].active {
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
border-color: #d9d9d9;
box-shadow: none;
}
|
|
3077
|
|
|
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
|
.ant-btn.disabled > a:only-child,
.ant-btn[disabled] > a:only-child,
.ant-btn.disabled:hover > a:only-child,
.ant-btn[disabled]:hover > a:only-child,
.ant-btn.disabled:focus > a:only-child,
.ant-btn[disabled]:focus > a:only-child,
.ant-btn.disabled:active > a:only-child,
.ant-btn[disabled]:active > a:only-child,
.ant-btn.disabled.active > a:only-child,
.ant-btn[disabled].active > a:only-child {
color: currentColor;
}
|
|
3090
|
|
|
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
|
.ant-btn.disabled > a:only-child:after,
.ant-btn[disabled] > a:only-child:after,
.ant-btn.disabled:hover > a:only-child:after,
.ant-btn[disabled]:hover > a:only-child:after,
.ant-btn.disabled:focus > a:only-child:after,
.ant-btn[disabled]:focus > a:only-child:after,
.ant-btn.disabled:active > a:only-child:after,
.ant-btn[disabled]:active > a:only-child:after,
.ant-btn.disabled.active > a:only-child:after,
.ant-btn[disabled].active > a:only-child:after {
background: transparent;
}
|
|
3103
|
|
|
3104
3105
3106
3107
3108
3109
|
.ant-btn:hover,
.ant-btn:focus,
.ant-btn:active,
.ant-btn.active {
background: #fff;
}
|
|
3110
|
|
|
3111
3112
3113
3114
3115
3116
|
.ant-btn-primary {
color: #fff;
background-color: @primary-color;
border-color: @primary-color;
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
}
|
|
3117
|
|
|
3118
3119
3120
|
.ant-btn-primary > a:only-child {
color: currentColor;
}
|
|
3121
|
|
|
3122
3123
3124
|
.ant-btn-primary > a:only-child:after {
background: transparent;
}
|
|
3125
|
|
|
3126
3127
3128
3129
3130
3131
|
.ant-btn-primary:hover,
.ant-btn-primary:focus {
color: #fff;
background-color: color(~`colorPalette("@{primary-color}", 5)`);
border-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
3132
|
|
|
3133
3134
3135
3136
|
.ant-btn-primary:hover > a:only-child,
.ant-btn-primary:focus > a:only-child {
color: currentColor;
}
|
|
3137
|
|
|
3138
3139
3140
3141
|
.ant-btn-primary:hover > a:only-child:after,
.ant-btn-primary:focus > a:only-child:after {
background: transparent;
}
|
|
3142
|
|
|
3143
3144
3145
3146
3147
3148
|
.ant-btn-primary:active,
.ant-btn-primary.active {
color: #fff;
background-color: color(~`colorPalette("@{primary-color}", 7)`);
border-color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
3149
|
|
|
3150
3151
3152
3153
|
.ant-btn-primary:active > a:only-child,
.ant-btn-primary.active > a:only-child {
color: currentColor;
}
|
|
3154
|
|
|
3155
3156
3157
3158
|
.ant-btn-primary:active > a:only-child:after,
.ant-btn-primary.active > a:only-child:after {
background: transparent;
}
|
|
3159
|
|
|
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
|
.ant-btn-primary.disabled,
.ant-btn-primary[disabled],
.ant-btn-primary.disabled:hover,
.ant-btn-primary[disabled]:hover,
.ant-btn-primary.disabled:focus,
.ant-btn-primary[disabled]:focus,
.ant-btn-primary.disabled:active,
.ant-btn-primary[disabled]:active,
.ant-btn-primary.disabled.active,
.ant-btn-primary[disabled].active {
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
border-color: #d9d9d9;
box-shadow: none;
}
|
|
3175
|
|
|
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
|
.ant-btn-primary.disabled > a:only-child,
.ant-btn-primary[disabled] > a:only-child,
.ant-btn-primary.disabled:hover > a:only-child,
.ant-btn-primary[disabled]:hover > a:only-child,
.ant-btn-primary.disabled:focus > a:only-child,
.ant-btn-primary[disabled]:focus > a:only-child,
.ant-btn-primary.disabled:active > a:only-child,
.ant-btn-primary[disabled]:active > a:only-child,
.ant-btn-primary.disabled.active > a:only-child,
.ant-btn-primary[disabled].active > a:only-child {
color: currentColor;
}
|
|
3188
|
|
|
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
|
.ant-btn-primary.disabled > a:only-child:after,
.ant-btn-primary[disabled] > a:only-child:after,
.ant-btn-primary.disabled:hover > a:only-child:after,
.ant-btn-primary[disabled]:hover > a:only-child:after,
.ant-btn-primary.disabled:focus > a:only-child:after,
.ant-btn-primary[disabled]:focus > a:only-child:after,
.ant-btn-primary.disabled:active > a:only-child:after,
.ant-btn-primary[disabled]:active > a:only-child:after,
.ant-btn-primary.disabled.active > a:only-child:after,
.ant-btn-primary[disabled].active > a:only-child:after {
background: transparent;
}
|
|
3201
|
|
|
3202
3203
3204
3205
|
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
border-right-color: color(~`colorPalette("@{primary-color}", 5)`);
border-left-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
3206
|
|
|
3207
3208
3209
|
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
border-color: #d9d9d9;
}
|
|
3210
|
|
|
3211
3212
3213
|
.ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
border-right-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
3214
|
|
|
3215
3216
3217
|
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
border-right-color: #d9d9d9;
}
|
|
3218
|
|
|
3219
3220
3221
3222
|
.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
.ant-btn-group .ant-btn-primary + .ant-btn-primary {
border-left-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
3223
|
|
|
3224
3225
3226
3227
|
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
border-left-color: #d9d9d9;
}
|
|
3228
|
|
|
3229
3230
3231
3232
3233
|
.ant-btn-ghost {
color: rgba(0, 0, 0, 0.65);
background-color: transparent;
border-color: #d9d9d9;
}
|
|
3234
|
|
|
3235
3236
3237
|
.ant-btn-ghost > a:only-child {
color: currentColor;
}
|
|
3238
|
|
|
3239
3240
3241
|
.ant-btn-ghost > a:only-child:after {
background: transparent;
}
|
|
3242
|
|
|
3243
3244
3245
3246
3247
3248
|
.ant-btn-ghost:hover,
.ant-btn-ghost:focus {
color: color(~`colorPalette("@{primary-color}", 5)`);
background-color: transparent;
border-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
3249
|
|
|
3250
3251
3252
3253
|
.ant-btn-ghost:hover > a:only-child,
.ant-btn-ghost:focus > a:only-child {
color: currentColor;
}
|
|
3254
|
|
|
3255
3256
3257
3258
|
.ant-btn-ghost:hover > a:only-child:after,
.ant-btn-ghost:focus > a:only-child:after {
background: transparent;
}
|
|
3259
|
|
|
3260
3261
3262
3263
3264
3265
|
.ant-btn-ghost:active,
.ant-btn-ghost.active {
color: color(~`colorPalette("@{primary-color}", 7)`);
background-color: transparent;
border-color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
3266
|
|
|
3267
3268
3269
3270
|
.ant-btn-ghost:active > a:only-child,
.ant-btn-ghost.active > a:only-child {
color: currentColor;
}
|
|
3271
|
|
|
3272
3273
3274
3275
|
.ant-btn-ghost:active > a:only-child:after,
.ant-btn-ghost.active > a:only-child:after {
background: transparent;
}
|
|
3276
|
|
|
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
|
.ant-btn-ghost.disabled,
.ant-btn-ghost[disabled],
.ant-btn-ghost.disabled:hover,
.ant-btn-ghost[disabled]:hover,
.ant-btn-ghost.disabled:focus,
.ant-btn-ghost[disabled]:focus,
.ant-btn-ghost.disabled:active,
.ant-btn-ghost[disabled]:active,
.ant-btn-ghost.disabled.active,
.ant-btn-ghost[disabled].active {
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
border-color: #d9d9d9;
box-shadow: none;
}
|
|
3292
|
|
|
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
|
.ant-btn-ghost.disabled > a:only-child,
.ant-btn-ghost[disabled] > a:only-child,
.ant-btn-ghost.disabled:hover > a:only-child,
.ant-btn-ghost[disabled]:hover > a:only-child,
.ant-btn-ghost.disabled:focus > a:only-child,
.ant-btn-ghost[disabled]:focus > a:only-child,
.ant-btn-ghost.disabled:active > a:only-child,
.ant-btn-ghost[disabled]:active > a:only-child,
.ant-btn-ghost.disabled.active > a:only-child,
.ant-btn-ghost[disabled].active > a:only-child {
color: currentColor;
}
|
|
3305
|
|
|
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
|
.ant-btn-ghost.disabled > a:only-child:after,
.ant-btn-ghost[disabled] > a:only-child:after,
.ant-btn-ghost.disabled:hover > a:only-child:after,
.ant-btn-ghost[disabled]:hover > a:only-child:after,
.ant-btn-ghost.disabled:focus > a:only-child:after,
.ant-btn-ghost[disabled]:focus > a:only-child:after,
.ant-btn-ghost.disabled:active > a:only-child:after,
.ant-btn-ghost[disabled]:active > a:only-child:after,
.ant-btn-ghost.disabled.active > a:only-child:after,
.ant-btn-ghost[disabled].active > a:only-child:after {
background: transparent;
}
|
|
3318
|
|
|
3319
3320
3321
3322
3323
3324
|
.ant-btn-dashed {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
border-color: #d9d9d9;
border-style: dashed;
}
|
|
3325
|
|
|
3326
3327
3328
|
.ant-btn-dashed > a:only-child {
color: currentColor;
}
|
|
3329
|
|
|
3330
3331
3332
|
.ant-btn-dashed > a:only-child:after {
background: transparent;
}
|
|
3333
|
|
|
3334
3335
3336
3337
3338
3339
|
.ant-btn-dashed:hover,
.ant-btn-dashed:focus {
color: color(~`colorPalette("@{primary-color}", 5)`);
background-color: #fff;
border-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
3340
|
|
|
3341
3342
3343
3344
|
.ant-btn-dashed:hover > a:only-child,
.ant-btn-dashed:focus > a:only-child {
color: currentColor;
}
|
|
3345
|
|
|
3346
3347
3348
3349
|
.ant-btn-dashed:hover > a:only-child:after,
.ant-btn-dashed:focus > a:only-child:after {
background: transparent;
}
|
|
3350
|
|
|
3351
3352
3353
3354
3355
3356
|
.ant-btn-dashed:active,
.ant-btn-dashed.active {
color: color(~`colorPalette("@{primary-color}", 7)`);
background-color: #fff;
border-color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
3357
|
|
|
3358
3359
3360
3361
|
.ant-btn-dashed:active > a:only-child,
.ant-btn-dashed.active > a:only-child {
color: currentColor;
}
|
|
3362
|
|
|
3363
3364
3365
3366
|
.ant-btn-dashed:active > a:only-child:after,
.ant-btn-dashed.active > a:only-child:after {
background: transparent;
}
|
|
3367
|
|
|
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
|
.ant-btn-dashed.disabled,
.ant-btn-dashed[disabled],
.ant-btn-dashed.disabled:hover,
.ant-btn-dashed[disabled]:hover,
.ant-btn-dashed.disabled:focus,
.ant-btn-dashed[disabled]:focus,
.ant-btn-dashed.disabled:active,
.ant-btn-dashed[disabled]:active,
.ant-btn-dashed.disabled.active,
.ant-btn-dashed[disabled].active {
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
border-color: #d9d9d9;
box-shadow: none;
}
|
|
3383
|
|
|
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
|
.ant-btn-dashed.disabled > a:only-child,
.ant-btn-dashed[disabled] > a:only-child,
.ant-btn-dashed.disabled:hover > a:only-child,
.ant-btn-dashed[disabled]:hover > a:only-child,
.ant-btn-dashed.disabled:focus > a:only-child,
.ant-btn-dashed[disabled]:focus > a:only-child,
.ant-btn-dashed.disabled:active > a:only-child,
.ant-btn-dashed[disabled]:active > a:only-child,
.ant-btn-dashed.disabled.active > a:only-child,
.ant-btn-dashed[disabled].active > a:only-child {
color: currentColor;
}
|
|
3396
|
|
|
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
|
.ant-btn-dashed.disabled > a:only-child:after,
.ant-btn-dashed[disabled] > a:only-child:after,
.ant-btn-dashed.disabled:hover > a:only-child:after,
.ant-btn-dashed[disabled]:hover > a:only-child:after,
.ant-btn-dashed.disabled:focus > a:only-child:after,
.ant-btn-dashed[disabled]:focus > a:only-child:after,
.ant-btn-dashed.disabled:active > a:only-child:after,
.ant-btn-dashed[disabled]:active > a:only-child:after,
.ant-btn-dashed.disabled.active > a:only-child:after,
.ant-btn-dashed[disabled].active > a:only-child:after {
background: transparent;
}
|
|
3409
|
|
|
3410
3411
3412
3413
3414
|
.ant-btn-danger {
color: #f5222d;
background-color: #f5f5f5;
border-color: #d9d9d9;
}
|
|
3415
|
|
|
3416
3417
3418
|
.ant-btn-danger > a:only-child {
color: currentColor;
}
|
|
3419
|
|
|
3420
3421
3422
|
.ant-btn-danger > a:only-child:after {
background: transparent;
}
|
|
3423
|
|
|
3424
3425
3426
3427
3428
|
.ant-btn-danger:hover {
color: #fff;
background-color: #ff4d4f;
border-color: #ff4d4f;
}
|
|
3429
|
|
|
3430
3431
3432
|
.ant-btn-danger:hover > a:only-child {
color: currentColor;
}
|
|
3433
|
|
|
3434
3435
3436
|
.ant-btn-danger:hover > a:only-child:after {
background: transparent;
}
|
|
3437
|
|
|
3438
3439
3440
3441
3442
|
.ant-btn-danger:focus {
color: #ff4d4f;
background-color: #fff;
border-color: #ff4d4f;
}
|
|
3443
|
|
|
3444
3445
3446
|
.ant-btn-danger:focus > a:only-child {
color: currentColor;
}
|
|
3447
|
|
|
3448
3449
3450
|
.ant-btn-danger:focus > a:only-child:after {
background: transparent;
}
|
|
3451
|
|
|
3452
3453
3454
3455
3456
3457
|
.ant-btn-danger:active,
.ant-btn-danger.active {
color: #fff;
background-color: #cf1322;
border-color: #cf1322;
}
|
|
3458
|
|
|
3459
3460
3461
3462
|
.ant-btn-danger:active > a:only-child,
.ant-btn-danger.active > a:only-child {
color: currentColor;
}
|
|
3463
|
|
|
3464
3465
3466
3467
|
.ant-btn-danger:active > a:only-child:after,
.ant-btn-danger.active > a:only-child:after {
background: transparent;
}
|
|
3468
|
|
|
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
|
.ant-btn-danger.disabled,
.ant-btn-danger[disabled],
.ant-btn-danger.disabled:hover,
.ant-btn-danger[disabled]:hover,
.ant-btn-danger.disabled:focus,
.ant-btn-danger[disabled]:focus,
.ant-btn-danger.disabled:active,
.ant-btn-danger[disabled]:active,
.ant-btn-danger.disabled.active,
.ant-btn-danger[disabled].active {
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
border-color: #d9d9d9;
box-shadow: none;
}
|
|
3484
|
|
|
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
|
.ant-btn-danger.disabled > a:only-child,
.ant-btn-danger[disabled] > a:only-child,
.ant-btn-danger.disabled:hover > a:only-child,
.ant-btn-danger[disabled]:hover > a:only-child,
.ant-btn-danger.disabled:focus > a:only-child,
.ant-btn-danger[disabled]:focus > a:only-child,
.ant-btn-danger.disabled:active > a:only-child,
.ant-btn-danger[disabled]:active > a:only-child,
.ant-btn-danger.disabled.active > a:only-child,
.ant-btn-danger[disabled].active > a:only-child {
color: currentColor;
}
|
|
3497
|
|
|
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
|
.ant-btn-danger.disabled > a:only-child:after,
.ant-btn-danger[disabled] > a:only-child:after,
.ant-btn-danger.disabled:hover > a:only-child:after,
.ant-btn-danger[disabled]:hover > a:only-child:after,
.ant-btn-danger.disabled:focus > a:only-child:after,
.ant-btn-danger[disabled]:focus > a:only-child:after,
.ant-btn-danger.disabled:active > a:only-child:after,
.ant-btn-danger[disabled]:active > a:only-child:after,
.ant-btn-danger.disabled.active > a:only-child:after,
.ant-btn-danger[disabled].active > a:only-child:after {
background: transparent;
}
|
|
3510
|
|
|
3511
3512
3513
3514
|
.ant-btn-circle,
.ant-btn-circle-outline {
border-radius: 50%;
}
|
|
3515
|
|
|
3516
3517
3518
3519
|
.ant-btn-circle.ant-btn-lg,
.ant-btn-circle-outline.ant-btn-lg {
border-radius: 50%;
}
|
|
3520
|
|
|
3521
3522
3523
3524
|
.ant-btn-circle.ant-btn-sm,
.ant-btn-circle-outline.ant-btn-sm {
border-radius: 50%;
}
|
|
3525
|
|
|
3526
3527
3528
3529
|
.ant-btn:before {
background: #fff;
border-radius: inherit;
}
|
|
3530
|
|
|
3531
3532
3533
3534
|
.ant-btn-group-lg > .ant-btn,
.ant-btn-group-lg > span > .ant-btn {
border-radius: 0;
}
|
|
3535
|
|
|
3536
3537
3538
3539
|
.ant-btn-group-sm > .ant-btn,
.ant-btn-group-sm > span > .ant-btn {
border-radius: 0;
}
|
|
3540
|
|
|
3541
3542
3543
|
.ant-btn-group .ant-btn-primary + .ant-btn:not(.ant-btn-primary):not([disabled]) {
border-left-color: transparent;
}
|
|
3544
|
|
|
3545
3546
3547
|
.ant-btn-group .ant-btn {
border-radius: 0;
}
|
|
3548
|
|
|
3549
3550
3551
|
.ant-btn-group > .ant-btn:only-child {
border-radius: 4px;
}
|
|
3552
|
|
|
3553
3554
3555
|
.ant-btn-group > span:only-child > .ant-btn {
border-radius: 4px;
}
|
|
3556
|
|
|
3557
3558
3559
3560
3561
|
.ant-btn-group > .ant-btn:first-child:not(:last-child),
.ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
|
|
3562
|
|
|
3563
3564
3565
3566
3567
|
.ant-btn-group > .ant-btn:last-child:not(:first-child),
.ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
|
|
3568
|
|
|
3569
3570
3571
|
.ant-btn-group-sm > .ant-btn:only-child {
border-radius: 4px;
}
|
|
3572
|
|
|
3573
3574
3575
|
.ant-btn-group-sm > span:only-child > .ant-btn {
border-radius: 4px;
}
|
|
3576
|
|
|
3577
3578
3579
3580
3581
|
.ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
.ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
|
|
3582
|
|
|
3583
3584
3585
3586
3587
|
.ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
.ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
|
|
3588
|
|
|
3589
3590
3591
|
.ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
border-radius: 0;
}
|
|
3592
|
|
|
3593
3594
3595
3596
|
.ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
|
|
3597
|
|
|
3598
3599
3600
3601
|
.ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
|
|
3602
|
|
|
3603
3604
3605
3606
3607
|
.ant-btn-background-ghost {
background: transparent !important;
border-color: #fff;
color: #fff;
}
|
|
3608
|
|
|
3609
3610
3611
3612
3613
|
.ant-btn-background-ghost.ant-btn-primary {
color: @primary-color;
background-color: transparent;
border-color: @primary-color;
}
|
|
3614
|
|
|
3615
3616
3617
|
.ant-btn-background-ghost.ant-btn-primary > a:only-child {
color: currentColor;
}
|
|
3618
|
|
|
3619
3620
3621
|
.ant-btn-background-ghost.ant-btn-primary > a:only-child:after {
background: transparent;
}
|
|
3622
|
|
|
3623
3624
3625
3626
3627
3628
|
.ant-btn-background-ghost.ant-btn-primary:hover,
.ant-btn-background-ghost.ant-btn-primary:focus {
color: color(~`colorPalette("@{primary-color}", 5)`);
background-color: transparent;
border-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
3629
|
|
|
3630
3631
3632
3633
|
.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
color: currentColor;
}
|
|
3634
|
|
|
3635
3636
3637
3638
|
.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child:after {
background: transparent;
}
|
|
3639
|
|
|
3640
3641
3642
3643
3644
3645
|
.ant-btn-background-ghost.ant-btn-primary:active,
.ant-btn-background-ghost.ant-btn-primary.active {
color: color(~`colorPalette("@{primary-color}", 7)`);
background-color: transparent;
border-color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
3646
|
|
|
3647
3648
3649
3650
|
.ant-btn-background-ghost.ant-btn-primary:active > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.active > a:only-child {
color: currentColor;
}
|
|
3651
|
|
|
3652
3653
3654
3655
|
.ant-btn-background-ghost.ant-btn-primary:active > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary.active > a:only-child:after {
background: transparent;
}
|
|
3656
|
|
|
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
|
.ant-btn-background-ghost.ant-btn-primary.disabled,
.ant-btn-background-ghost.ant-btn-primary[disabled],
.ant-btn-background-ghost.ant-btn-primary.disabled:hover,
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover,
.ant-btn-background-ghost.ant-btn-primary.disabled:focus,
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus,
.ant-btn-background-ghost.ant-btn-primary.disabled:active,
.ant-btn-background-ghost.ant-btn-primary[disabled]:active,
.ant-btn-background-ghost.ant-btn-primary.disabled.active,
.ant-btn-background-ghost.ant-btn-primary[disabled].active {
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
border-color: #d9d9d9;
box-shadow: none;
}
|
|
3672
|
|
|
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
|
.ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.disabled:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.disabled:active > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.disabled.active > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child {
color: currentColor;
}
|
|
3685
|
|
|
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
|
.ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary.disabled:focus > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary.disabled:active > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary.disabled.active > a:only-child:after,
.ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child:after {
background: transparent;
}
|
|
3698
|
|
|
3699
3700
3701
3702
3703
|
.ant-btn-background-ghost.ant-btn-danger {
color: #f5222d;
background-color: transparent;
border-color: #f5222d;
}
|
|
3704
|
|
|
3705
3706
3707
|
.ant-btn-background-ghost.ant-btn-danger > a:only-child {
color: currentColor;
}
|
|
3708
|
|
|
3709
3710
3711
|
.ant-btn-background-ghost.ant-btn-danger > a:only-child:after {
background: transparent;
}
|
|
3712
|
|
|
3713
3714
3715
3716
3717
3718
|
.ant-btn-background-ghost.ant-btn-danger:hover,
.ant-btn-background-ghost.ant-btn-danger:focus {
color: #ff4d4f;
background-color: transparent;
border-color: #ff4d4f;
}
|
|
3719
|
|
|
3720
3721
3722
3723
|
.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-danger:focus > a:only-child {
color: currentColor;
}
|
|
3724
|
|
|
3725
3726
3727
3728
|
.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger:focus > a:only-child:after {
background: transparent;
}
|
|
3729
|
|
|
3730
3731
3732
3733
3734
3735
|
.ant-btn-background-ghost.ant-btn-danger:active,
.ant-btn-background-ghost.ant-btn-danger.active {
color: #cf1322;
background-color: transparent;
border-color: #cf1322;
}
|
|
3736
|
|
|
3737
3738
3739
3740
|
.ant-btn-background-ghost.ant-btn-danger:active > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.active > a:only-child {
color: currentColor;
}
|
|
3741
|
|
|
3742
3743
3744
3745
|
.ant-btn-background-ghost.ant-btn-danger:active > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger.active > a:only-child:after {
background: transparent;
}
|
|
3746
|
|
|
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
|
.ant-btn-background-ghost.ant-btn-danger.disabled,
.ant-btn-background-ghost.ant-btn-danger[disabled],
.ant-btn-background-ghost.ant-btn-danger.disabled:hover,
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover,
.ant-btn-background-ghost.ant-btn-danger.disabled:focus,
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,
.ant-btn-background-ghost.ant-btn-danger.disabled:active,
.ant-btn-background-ghost.ant-btn-danger[disabled]:active,
.ant-btn-background-ghost.ant-btn-danger.disabled.active,
.ant-btn-background-ghost.ant-btn-danger[disabled].active {
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
border-color: #d9d9d9;
box-shadow: none;
}
|
|
3762
|
|
|
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
|
.ant-btn-background-ghost.ant-btn-danger.disabled > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.disabled:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.disabled:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.disabled:active > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.disabled.active > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled].active > a:only-child {
color: currentColor;
}
|
|
3775
|
|
|
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
|
.ant-btn-background-ghost.ant-btn-danger.disabled > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger.disabled:hover > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger.disabled:focus > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger.disabled:active > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger.disabled.active > a:only-child:after,
.ant-btn-background-ghost.ant-btn-danger[disabled].active > a:only-child:after {
background: transparent;
}
|
|
3788
|
|
|
3789
3790
3791
3792
|
.christmas.ant-btn-primary:before {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE0AAAAXCAYAAABOHMIhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABiZJREFUeNrsWMtPlFcUvzPMwIDysLyRR4uATDHWCiVgSmRlios2DeiiXUFs0nRBd6arxqQhJDapkYXhP4BqDKTQhZaFNQSCaBEVJjwdHsNr5DUMDDPDzPT3u7nTDEgRKrKgc5KT+z3uufec33de99P4fD4RpL2RNgjB3kn35MkTeRERESFiYmLkGBoaKnQ6nWSNRvPPZFxr+vv7k6KioiIdDsfa8vLyQkFBgcP3Bnel3MDAQArWI0eFhISE87nb7bZ7PJ4VvLYuLi5O5+fnu9+kMNfq6+tLjIyMzMY6KeBEbK/XarXReI3lPDZMWcc4v7GxYV1dXR3Jy8ub2E5HPvJ6vRSSDH0ku1wuAfsEZOV1IEFHoeNFdHS0yMrK2knR0Lm5uR+hxLdQMjbwHTZbB41h8RGwCdc9MzMzneHh4bGJiYlf4SN8ijkfwqiIncCAAR7Iz2GPSShudjqdfeCeqampvwBQfFxc3JdYqwTv8gB8/F48A8BgKecE14V+L7ju2tpae05OzkuCCZvkPOj8mizmC6vVKtmPu+bx48cC3qI1mUyFUOyywWD4SHlELBaLJmCHNcwAghuAOujtuF4FqHO4nsX4EsAS3I4TJ04ME1h8PDE9PS09TYZoY2Pj1729vd6lpSVfkDYTPG0UkfNDRUWFgQ5Gb2Mh0N29e9eG/GQfHh4W8/PzwUy/ObQ/gMfVVlZW1iAiZdQxp3nv3LljRoL/5erVq1UIxzSiiVD9X4EDYATynCwAzGO858hCQRoaGmJFZNJz8YIcBc4BF966dau6sLAwBxVSJCUlCSThQwuU3W6XkYUok1Vzm5znQx5bbm9v77p+/frPeNSNRzZ/ISBwrG4ZR48eLamtrf2+uLjYSEG9Xi/wTISFhQlWGXohyzO/CJlVl23KQRLbABoaHx+/Z1lUZ/Hq1SsJFj3JT3hmHx8fnydPTEzMj46OziHPW2w22wxeD4Kfgadh/4YEzU8Az4DhffAn5eXlX1y6dKkEoCTspAQ9Mjs7+0BBo8Fms1lkZGTsOo0QLLRNkvnR+fEJzIMHD0xtbW39CL8JTFtSbAOvBIyLHIGVm9VzE2gKuDAMSSpcT6KXyT137lx2cnLyMXhcGDb3wq3XuWF3d/fCzZs3P0c4v5eSknJQbYLo7Ox0gC2lpaVZ3Be67Th/dnZWoAJKsJC3XA8fPhxoamp6hMb+BaaMgWcUMGtszZjiFDNmvcDI91pzG0iY4ARwkwrxkcHBwUdgNrRMbnrqoRbkVzDcvn3bl5qaWsmcgFH4G8XdEGUWFhak51AuISFBnkoCTyFbyWKxCJwIxlC0fq2rq7tcVFRkRKskjh8/Lr0+kBjCCDV/knfdv3//WX19/R8IRRNemxlu4AXwKqM+EJwdj1HbPYSwh3sCPAJDABm2LLchCjS+5/kirKGhwWk0GrMuXrxYQuX9hm/XXTMXMY+srKwI5ApZrbYmZh7deEJhAUKjLe/pLTzSsCuHrK+1tbUJVe3P6upq87Vr174rKysrYHVj/uW+OH3IfEuw4F3ee/fuPQfAvwOs5yyE4CnlFOu7BWrTCWlreO6FACpBZGwUw4BvkANLobReHb3kGZYGsGzTq/zlO8AT1ru6uoZbWlqeA6gINJAfnz59OlVLoX8Jtebm5raampqfcMvQYgTknz9//sKVK1c+y83NTdIEuCnaKMuNGzd+6+np6cCtSTkAw9D9X8Dyh+dbgaaAC1XAnUlPTy+qqqq6cPbs2UzkmWjNljiDJzpwHFnCkW2yo6NjCKW8H54wjlezKvRT09LSTsJrz5w6dSoN+Yp51ADAPUj8VoDbDq9pxrwuJcNIYQllJTIi/xopBw/VA7DJp0+f9hA78CgL5F5C8J2CpoCj8sfA6WCe/FPRhsRlZmbGIs8Y4FFO5CJgtrSsvrRVGW1V93b1myoGnKAKEcHgnwsWpg1lNI0fphwrmdqbckeU18WrnlOjqp5/j7W3BWvfQVPKa5SBkcrYCNVB65TRTlWZ1lXiXVU5xbtlDb2SPaLWYwrgHIcqPg6Vc7fbX69Yoyqfa7/AeiegbWOEVhmsVcWDwPn224iDJgla8Hd38Hd3ELQgaIeI/hZgAIPEp0vmQJdoAAAAAElFTkSuQmCC) no-repeat 50% 0;
background-size: 64px;
}
|
|
3793
|
|
|
3794
3795
3796
|
.christmas.ant-btn-primary.ant-btn-lg:before {
background-size: 72px;
}
|
|
3797
|
|
|
3798
3799
3800
|
.christmas.ant-btn-primary.ant-btn-sm:before {
background-size: 56px;
}
|
|
3801
|
|
|
3802
3803
3804
3805
|
.ant-fullcalendar {
color: rgba(0, 0, 0, 0.65);
border-top: 1px solid #d9d9d9;
}
|
|
3806
|
|
|
3807
3808
3809
3810
|
.ant-fullcalendar table {
border-collapse: collapse;
background-color: transparent;
}
|
|
3811
|
|
|
3812
3813
3814
3815
3816
|
.ant-fullcalendar table,
.ant-fullcalendar th,
.ant-fullcalendar td {
border: 0;
}
|
|
3817
|
|
|
3818
3819
3820
|
.ant-fullcalendar-calendar-table {
border-spacing: 0;
}
|
|
3821
|
|
|
3822
3823
3824
3825
3826
|
.ant-fullcalendar-value {
color: rgba(0, 0, 0, 0.65);
border-radius: 2px;
background: transparent;
}
|
|
3827
|
|
|
3828
3829
3830
|
.ant-fullcalendar-value:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
3831
|
|
|
3832
3833
3834
3835
|
.ant-fullcalendar-value:active {
background: @primary-color;
color: #fff;
}
|
|
3836
|
|
|
3837
3838
3839
3840
|
.ant-fullcalendar-today .ant-fullcalendar-value,
.ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-value {
box-shadow: 0 0 0 1px @primary-color inset;
}
|
|
3841
|
|
|
3842
3843
3844
3845
3846
|
.ant-fullcalendar-selected-day .ant-fullcalendar-value,
.ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-value {
background: @primary-color;
color: #fff;
}
|
|
3847
|
|
|
3848
3849
3850
3851
|
.ant-fullcalendar-disabled-cell-first-of-row .ant-fullcalendar-value {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
|
|
3852
|
|
|
3853
3854
3855
3856
|
.ant-fullcalendar-disabled-cell-last-of-row .ant-fullcalendar-value {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
|
|
3857
|
|
|
3858
3859
3860
3861
|
.ant-fullcalendar-last-month-cell .ant-fullcalendar-value,
.ant-fullcalendar-next-month-btn-day .ant-fullcalendar-value {
color: rgba(0, 0, 0, 0.25);
}
|
|
3862
|
|
|
3863
3864
3865
|
.ant-fullcalendar-month-panel-table {
border-collapse: separate;
}
|
|
3866
|
|
|
3867
3868
3869
|
.ant-fullcalendar-fullscreen {
border-top: 0;
}
|
|
3870
|
|
|
3871
3872
3873
3874
3875
|
.ant-fullcalendar-fullscreen .ant-fullcalendar-month,
.ant-fullcalendar-fullscreen .ant-fullcalendar-date {
color: rgba(0, 0, 0, 0.65);
border-top: 2px solid #e8e8e8;
}
|
|
3876
|
|
|
3877
3878
3879
3880
|
.ant-fullcalendar-fullscreen .ant-fullcalendar-month:hover,
.ant-fullcalendar-fullscreen .ant-fullcalendar-date:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
3881
|
|
|
3882
3883
3884
3885
|
.ant-fullcalendar-fullscreen .ant-fullcalendar-month:active,
.ant-fullcalendar-fullscreen .ant-fullcalendar-date:active {
background: color(~`colorPalette("@{primary-color}", 2)`);
}
|
|
3886
|
|
|
3887
3888
3889
|
.ant-fullcalendar-fullscreen .ant-fullcalendar-value {
background: transparent;
}
|
|
3890
|
|
|
3891
3892
3893
|
.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-value {
color: rgba(0, 0, 0, 0.65);
}
|
|
3894
|
|
|
3895
3896
3897
3898
3899
|
.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-month,
.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-date {
border-top-color: @primary-color;
background: transparent;
}
|
|
3900
|
|
|
3901
3902
3903
3904
|
.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-value,
.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-value {
box-shadow: none;
}
|
|
3905
|
|
|
3906
3907
3908
3909
|
.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-month,
.ant-fullcalendar-fullscreen .ant-fullcalendar-selected-day .ant-fullcalendar-date {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
3910
|
|
|
3911
3912
3913
3914
|
.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-value,
.ant-fullcalendar-fullscreen .ant-fullcalendar-selected-day .ant-fullcalendar-value {
color: @primary-color;
}
|
|
3915
|
|
|
3916
3917
3918
3919
|
.ant-fullcalendar-fullscreen .ant-fullcalendar-last-month-cell .ant-fullcalendar-date,
.ant-fullcalendar-fullscreen .ant-fullcalendar-next-month-btn-day .ant-fullcalendar-date {
color: rgba(0, 0, 0, 0.25);
}
|
|
3920
|
|
|
3921
3922
3923
3924
|
.ant-fullcalendar-disabled-cell:not(.ant-fullcalendar-today) .ant-fullcalendar-date,
.ant-fullcalendar-disabled-cell:not(.ant-fullcalendar-today) .ant-fullcalendar-date:hover {
background: transparent;
}
|
|
3925
|
|
|
3926
3927
3928
3929
|
.ant-fullcalendar-disabled-cell .ant-fullcalendar-value {
color: rgba(0, 0, 0, 0.25);
border-radius: 0;
}
|
|
3930
|
|
|
3931
3932
3933
3934
3935
|
.ant-card {
color: rgba(0, 0, 0, 0.65);
background: #fff;
border-radius: 2px;
}
|
|
3936
|
|
|
3937
3938
3939
3940
|
.ant-card-hoverable:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
border-color: rgba(0, 0, 0, 0.09);
}
|
|
3941
|
|
|
3942
3943
3944
|
.ant-card-bordered {
border: 1px solid #e8e8e8;
}
|
|
3945
|
|
|
3946
3947
3948
3949
3950
3951
|
.ant-card-head {
background: transparent;
border-bottom: 1px solid #e8e8e8;
border-radius: 2px 2px 0 0;
color: rgba(0, 0, 0, 0.85);
}
|
|
3952
|
|
|
3953
3954
3955
|
.ant-card-head .ant-tabs {
color: rgba(0, 0, 0, 0.65);
}
|
|
3956
|
|
|
3957
3958
3959
|
.ant-card-head .ant-tabs-bar {
border-bottom: 1px solid #e8e8e8;
}
|
|
3960
|
|
|
3961
3962
3963
|
.ant-card-extra {
color: rgba(0, 0, 0, 0.65);
}
|
|
3964
|
|
|
3965
3966
3967
3968
3969
|
.ant-card-grid {
border-radius: 0;
border: 0;
box-shadow: 1px 0 0 0 #e8e8e8, 0 1px 0 0 #e8e8e8, 1px 1px 0 0 #e8e8e8, 1px 0 0 0 #e8e8e8 inset, 0 1px 0 0 #e8e8e8 inset;
}
|
|
3970
|
|
|
3971
3972
3973
|
.ant-card-grid:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
|
|
3974
|
|
|
3975
3976
3977
|
.ant-card-cover img {
border-radius: 2px 2px 0 0;
}
|
|
3978
|
|
|
3979
3980
3981
3982
|
.ant-card-actions {
border-top: 1px solid #e8e8e8;
background: #fafafa;
}
|
|
3983
|
|
|
3984
3985
3986
|
.ant-card-actions > li {
color: rgba(0, 0, 0, 0.45);
}
|
|
3987
|
|
|
3988
3989
3990
|
.ant-card-actions > li > span:hover {
color: @primary-color;
}
|
|
3991
|
|
|
3992
3993
3994
|
.ant-card-actions > li > span a {
color: rgba(0, 0, 0, 0.45);
}
|
|
3995
|
|
|
3996
3997
3998
|
.ant-card-actions > li > span a:hover {
color: @primary-color;
}
|
|
3999
|
|
|
4000
4001
4002
|
.ant-card-actions > li:not(:last-child) {
border-right: 1px solid #e8e8e8;
}
|
|
4003
|
|
|
4004
4005
4006
|
.ant-card-type-inner .ant-card-head {
background: #fafafa;
}
|
|
4007
|
|
|
4008
4009
4010
|
.ant-card-meta-title {
color: rgba(0, 0, 0, 0.85);
}
|
|
4011
|
|
|
4012
4013
4014
|
.ant-card-meta-description {
color: rgba(0, 0, 0, 0.45);
}
|
|
4015
|
|
|
4016
4017
4018
4019
4020
|
.ant-card-loading-block {
border-radius: 2px;
background: linear-gradient(90deg, rgba(207, 216, 220, 0.2), rgba(207, 216, 220, 0.4), rgba(207, 216, 220, 0.2));
background-size: 600% 600%;
}
|
|
4021
|
|
|
4022
4023
4024
|
.ant-carousel {
color: rgba(0, 0, 0, 0.65);
}
|
|
4025
|
|
|
4026
4027
4028
|
.ant-carousel .slick-slider {
-webkit-tap-highlight-color: transparent;
}
|
|
4029
|
|
|
4030
4031
4032
|
.ant-carousel .slick-vertical .slick-slide {
border: 1px solid transparent;
}
|
|
4033
|
|
|
4034
4035
4036
4037
4038
4039
|
.ant-carousel .slick-prev,
.ant-carousel .slick-next {
background: transparent;
color: transparent;
border: 0;
}
|
|
4040
|
|
|
4041
4042
4043
4044
4045
4046
4047
|
.ant-carousel .slick-prev:hover,
.ant-carousel .slick-next:hover,
.ant-carousel .slick-prev:focus,
.ant-carousel .slick-next:focus {
background: transparent;
color: transparent;
}
|
|
4048
|
|
|
4049
4050
4051
4052
4053
4054
|
.ant-carousel .slick-dots li button {
border: 0;
background: #fff;
border-radius: 1px;
color: transparent;
}
|
|
4055
|
|
|
4056
4057
4058
|
.ant-carousel .slick-dots li.slick-active button {
background: #fff;
}
|
|
4059
|
|
|
4060
4061
4062
|
.ant-cascader {
color: rgba(0, 0, 0, 0.65);
}
|
|
4063
|
|
|
4064
4065
4066
|
.ant-cascader-input.ant-input {
background-color: transparent !important;
}
|
|
4067
|
|
|
4068
4069
4070
4071
4072
|
.ant-cascader-picker {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
border-radius: 4px;
}
|
|
4073
|
|
|
4074
4075
4076
|
.ant-cascader-picker-with-value .ant-cascader-picker-label {
color: transparent;
}
|
|
4077
|
|
|
4078
4079
4080
4081
|
.ant-cascader-picker-disabled {
background: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
4082
|
|
|
4083
4084
4085
4086
4087
|
.ant-cascader-picker:focus .ant-cascader-input {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
4088
|
|
|
4089
4090
4091
|
.ant-cascader-picker-show-search.ant-cascader-picker-focused {
color: rgba(0, 0, 0, 0.25);
}
|
|
4092
|
|
|
4093
4094
4095
4096
|
.ant-cascader-picker-clear {
background: #fff;
color: rgba(0, 0, 0, 0.25);
}
|
|
4097
|
|
|
4098
4099
4100
|
.ant-cascader-picker-clear:hover {
color: rgba(0, 0, 0, 0.45);
}
|
|
4101
|
|
|
4102
4103
4104
|
.ant-cascader-picker-arrow {
color: rgba(0, 0, 0, 0.25);
}
|
|
4105
|
|
|
4106
4107
4108
4109
4110
|
.ant-cascader-menus {
background: #fff;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
|
|
4111
|
|
|
4112
4113
4114
|
.ant-cascader-menu {
border-right: 1px solid #e8e8e8;
}
|
|
4115
|
|
|
4116
4117
4118
|
.ant-cascader-menu:first-child {
border-radius: 4px 0 0 4px;
}
|
|
4119
|
|
|
4120
4121
4122
4123
|
.ant-cascader-menu:last-child {
border-right-color: transparent;
border-radius: 0 4px 4px 0;
}
|
|
4124
|
|
|
4125
4126
4127
|
.ant-cascader-menu:only-child {
border-radius: 4px;
}
|
|
4128
|
|
|
4129
4130
4131
|
.ant-cascader-menu-item:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
4132
|
|
|
4133
4134
4135
|
.ant-cascader-menu-item-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
4136
|
|
|
4137
4138
4139
|
.ant-cascader-menu-item-disabled:hover {
background: transparent;
}
|
|
4140
|
|
|
4141
4142
4143
4144
|
.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled),
.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover {
background: #f5f5f5;
}
|
|
4145
|
|
|
4146
4147
4148
4149
|
.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
.ant-cascader-menu-item-expand .ant-cascader-menu-item-loading-icon {
color: rgba(0, 0, 0, 0.45);
}
|
|
4150
|
|
|
4151
4152
4153
|
.ant-cascader-menu-item .ant-cascader-menu-item-keyword {
color: #f5222d;
}
|
|
4154
|
|
|
4155
4156
4157
|
.ant-checkbox {
color: rgba(0, 0, 0, 0.65);
}
|
|
4158
|
|
|
4159
4160
4161
4162
4163
|
.ant-checkbox-wrapper:hover .ant-checkbox-inner,
.ant-checkbox:hover .ant-checkbox-inner,
.ant-checkbox-input:focus + .ant-checkbox-inner {
border-color: @primary-color;
}
|
|
4164
|
|
|
4165
4166
4167
4168
|
.ant-checkbox-checked:after {
border-radius: 2px;
border: 1px solid @primary-color;
}
|
|
4169
|
|
|
4170
4171
4172
4173
4174
|
.ant-checkbox-inner {
border: 1px solid #d9d9d9;
border-radius: 2px;
background-color: #fff;
}
|
|
4175
|
|
|
4176
4177
4178
4179
4180
|
.ant-checkbox-inner:after {
border: 2px solid #fff;
border-top: 0;
border-left: 0;
}
|
|
4181
|
|
|
4182
4183
4184
4185
|
.ant-checkbox-indeterminate .ant-checkbox-inner:after {
border: 0;
background-color: @primary-color;
}
|
|
4186
|
|
|
4187
4188
4189
|
.ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner:after {
border-color: rgba(0, 0, 0, 0.25);
}
|
|
4190
|
|
|
4191
4192
4193
4194
4195
|
.ant-checkbox-checked .ant-checkbox-inner:after {
border: 2px solid #fff;
border-top: 0;
border-left: 0;
}
|
|
4196
|
|
|
4197
4198
4199
4200
|
.ant-checkbox-checked .ant-checkbox-inner {
background-color: @primary-color;
border-color: @primary-color;
}
|
|
4201
|
|
|
4202
4203
4204
|
.ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
border-color: rgba(0, 0, 0, 0.25);
}
|
|
4205
|
|
|
4206
4207
4208
4209
|
.ant-checkbox-disabled .ant-checkbox-inner {
border-color: #d9d9d9 !important;
background-color: #f5f5f5;
}
|
|
4210
|
|
|
4211
4212
4213
|
.ant-checkbox-disabled .ant-checkbox-inner:after {
border-color: #f5f5f5;
}
|
|
4214
|
|
|
4215
4216
4217
|
.ant-checkbox-disabled + span {
color: rgba(0, 0, 0, 0.25);
}
|
|
4218
|
|
|
4219
4220
4221
|
.ant-checkbox-wrapper {
color: rgba(0, 0, 0, 0.65);
}
|
|
4222
|
|
|
4223
4224
4225
|
.ant-checkbox-group {
color: rgba(0, 0, 0, 0.65);
}
|
|
4226
|
|
|
4227
4228
4229
4230
4231
4232
4233
|
.ant-collapse {
color: rgba(0, 0, 0, 0.65);
background-color: #fafafa;
border-radius: 4px;
border: 1px solid #d9d9d9;
border-bottom: 0;
}
|
|
4234
|
|
|
4235
4236
4237
|
.ant-collapse > .ant-collapse-item {
border-bottom: 1px solid #d9d9d9;
}
|
|
4238
|
|
|
4239
4240
4241
4242
|
.ant-collapse > .ant-collapse-item:last-child,
.ant-collapse > .ant-collapse-item:last-child > .ant-collapse-header {
border-radius: 0 0 4px 4px;
}
|
|
4243
|
|
|
4244
4245
4246
|
.ant-collapse > .ant-collapse-item > .ant-collapse-header {
color: rgba(0, 0, 0, 0.85);
}
|
|
4247
|
|
|
4248
4249
4250
4251
4252
|
.ant-collapse-content {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
border-top: 1px solid #d9d9d9;
}
|
|
4253
|
|
|
4254
4255
4256
|
.ant-collapse-item:last-child > .ant-collapse-content {
border-radius: 0 0 4px 4px;
}
|
|
4257
|
|
|
4258
4259
4260
4261
|
.ant-collapse-borderless {
background-color: #fff;
border: 0;
}
|
|
4262
|
|
|
4263
4264
4265
|
.ant-collapse-borderless > .ant-collapse-item {
border-bottom: 1px solid #d9d9d9;
}
|
|
4266
|
|
|
4267
4268
4269
4270
|
.ant-collapse-borderless > .ant-collapse-item:last-child,
.ant-collapse-borderless > .ant-collapse-item:last-child .ant-collapse-header {
border-radius: 0;
}
|
|
4271
|
|
|
4272
4273
4274
4275
|
.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content {
background-color: transparent;
border-top: 0;
}
|
|
4276
|
|
|
4277
4278
4279
4280
|
.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header,
.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header > .arrow {
color: rgba(0, 0, 0, 0.25);
}
|
|
4281
|
|
|
4282
4283
4284
|
.ant-calendar-picker-container {
color: rgba(0, 0, 0, 0.65);
}
|
|
4285
|
|
|
4286
4287
4288
|
.ant-calendar-picker {
color: rgba(0, 0, 0, 0.65);
}
|
|
4289
|
|
|
4290
4291
4292
|
.ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
border-color: @primary-color;
}
|
|
4293
|
|
|
4294
4295
4296
4297
4298
|
.ant-calendar-picker:focus .ant-calendar-picker-input:not(.ant-input-disabled) {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
4299
|
|
|
4300
4301
4302
4303
|
.ant-calendar-picker-clear {
color: rgba(0, 0, 0, 0.25);
background: #fff;
}
|
|
4304
|
|
|
4305
4306
4307
|
.ant-calendar-picker-clear:hover {
color: rgba(0, 0, 0, 0.45);
}
|
|
4308
|
|
|
4309
4310
4311
|
.ant-calendar-picker-icon {
color: rgba(0, 0, 0, 0.25);
}
|
|
4312
|
|
|
4313
4314
4315
4316
4317
4318
4319
|
.ant-calendar {
border: 1px solid #fff;
background-color: #fff;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
background-clip: padding-box;
}
|
|
4320
|
|
|
4321
4322
4323
|
.ant-calendar-input-wrap {
border-bottom: 1px solid #e8e8e8;
}
|
|
4324
|
|
|
4325
4326
4327
4328
4329
|
.ant-calendar-input {
border: 0;
color: rgba(0, 0, 0, 0.65);
background: #fff;
}
|
|
4330
|
|
|
4331
4332
4333
|
.ant-calendar-input::-moz-placeholder {
color: #bfbfbf;
}
|
|
4334
|
|
|
4335
4336
4337
|
.ant-calendar-input:-ms-input-placeholder {
color: #bfbfbf;
}
|
|
4338
|
|
|
4339
4340
4341
|
.ant-calendar-input::-webkit-input-placeholder {
color: #bfbfbf;
}
|
|
4342
|
|
|
4343
4344
4345
|
.ant-calendar-header {
border-bottom: 1px solid #e8e8e8;
}
|
|
4346
|
|
|
4347
4348
4349
|
.ant-calendar-header a:hover {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
4350
|
|
|
4351
4352
4353
4354
4355
4356
|
.ant-calendar-header .ant-calendar-century-select,
.ant-calendar-header .ant-calendar-decade-select,
.ant-calendar-header .ant-calendar-year-select,
.ant-calendar-header .ant-calendar-month-select {
color: rgba(0, 0, 0, 0.85);
}
|
|
4357
|
|
|
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
|
.ant-calendar-header .ant-calendar-prev-century-btn,
.ant-calendar-header .ant-calendar-next-century-btn,
.ant-calendar-header .ant-calendar-prev-decade-btn,
.ant-calendar-header .ant-calendar-next-decade-btn,
.ant-calendar-header .ant-calendar-prev-month-btn,
.ant-calendar-header .ant-calendar-next-month-btn,
.ant-calendar-header .ant-calendar-prev-year-btn,
.ant-calendar-header .ant-calendar-next-year-btn {
color: rgba(0, 0, 0, 0.45);
}
|
|
4368
|
|
|
4369
4370
4371
4372
|
.ant-calendar table {
border-collapse: collapse;
background-color: transparent;
}
|
|
4373
|
|
|
4374
4375
4376
4377
4378
|
.ant-calendar table,
.ant-calendar th,
.ant-calendar td {
border: 0;
}
|
|
4379
|
|
|
4380
4381
4382
|
.ant-calendar-calendar-table {
border-spacing: 0;
}
|
|
4383
|
|
|
4384
4385
4386
4387
4388
4389
|
.ant-calendar-date {
color: rgba(0, 0, 0, 0.65);
border-radius: 2px;
border: 1px solid transparent;
background: transparent;
}
|
|
4390
|
|
|
4391
4392
4393
|
.ant-calendar-date:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
4394
|
|
|
4395
4396
4397
4398
|
.ant-calendar-date:active {
color: #fff;
background: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
4399
|
|
|
4400
4401
4402
4403
|
.ant-calendar-today .ant-calendar-date {
border-color: @primary-color;
color: @primary-color;
}
|
|
4404
|
|
|
4405
4406
4407
4408
|
.ant-calendar-last-month-cell .ant-calendar-date,
.ant-calendar-next-month-btn-day .ant-calendar-date {
color: rgba(0, 0, 0, 0.25);
}
|
|
4409
|
|
|
4410
4411
4412
|
.ant-calendar-selected-day .ant-calendar-date {
background: #d1e9ff;
}
|
|
4413
|
|
|
4414
4415
4416
4417
4418
4419
4420
|
.ant-calendar-selected-date .ant-calendar-date,
.ant-calendar-selected-start-date .ant-calendar-date,
.ant-calendar-selected-end-date .ant-calendar-date {
background: @primary-color;
color: #fff;
border: 1px solid transparent;
}
|
|
4421
|
|
|
4422
4423
4424
4425
4426
|
.ant-calendar-selected-date .ant-calendar-date:hover,
.ant-calendar-selected-start-date .ant-calendar-date:hover,
.ant-calendar-selected-end-date .ant-calendar-date:hover {
background: @primary-color;
}
|
|
4427
|
|
|
4428
4429
4430
4431
4432
4433
|
.ant-calendar-disabled-cell .ant-calendar-date {
color: #bcbcbc;
background: #f5f5f5;
border-radius: 0;
border: 1px solid transparent;
}
|
|
4434
|
|
|
4435
4436
4437
|
.ant-calendar-disabled-cell .ant-calendar-date:hover {
background: #f5f5f5;
}
|
|
4438
|
|
|
4439
4440
4441
4442
|
.ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date:before {
border: 1px solid #bcbcbc;
border-radius: 2px;
}
|
|
4443
|
|
|
4444
4445
4446
4447
|
.ant-calendar-disabled-cell-first-of-row .ant-calendar-date {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
|
|
4448
|
|
|
4449
4450
4451
4452
|
.ant-calendar-disabled-cell-last-of-row .ant-calendar-date {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
|
|
4453
|
|
|
4454
4455
4456
|
.ant-calendar-footer {
border-top: 1px solid #e8e8e8;
}
|
|
4457
|
|
|
4458
4459
4460
|
.ant-calendar-footer:empty {
border-top: 0;
}
|
|
4461
|
|
|
4462
4463
4464
4465
|
.ant-calendar .ant-calendar-today-btn-disabled,
.ant-calendar .ant-calendar-clear-btn-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
4466
|
|
|
4467
4468
4469
|
.ant-calendar .ant-calendar-clear-btn:after {
color: rgba(0, 0, 0, 0.25);
}
|
|
4470
|
|
|
4471
4472
4473
|
.ant-calendar .ant-calendar-clear-btn:hover:after {
color: rgba(0, 0, 0, 0.45);
}
|
|
4474
|
|
|
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
|
.ant-calendar .ant-calendar-ok-btn {
background-image: none;
border: 1px solid transparent;
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
color: #fff;
background-color: @primary-color;
border-color: @primary-color;
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
border-radius: 4px;
}
|
|
4485
|
|
|
4486
4487
4488
|
.ant-calendar .ant-calendar-ok-btn:not([disabled]):active {
box-shadow: none;
}
|
|
4489
|
|
|
4490
4491
4492
|
.ant-calendar .ant-calendar-ok-btn-lg {
border-radius: 4px;
}
|
|
4493
|
|
|
4494
4495
4496
|
.ant-calendar .ant-calendar-ok-btn-sm {
border-radius: 4px;
}
|
|
4497
|
|
|
4498
4499
4500
|
.ant-calendar .ant-calendar-ok-btn > a:only-child {
color: currentColor;
}
|
|
4501
|
|
|
4502
4503
4504
|
.ant-calendar .ant-calendar-ok-btn > a:only-child:after {
background: transparent;
}
|
|
4505
|
|
|
4506
4507
4508
4509
4510
4511
|
.ant-calendar .ant-calendar-ok-btn:hover,
.ant-calendar .ant-calendar-ok-btn:focus {
color: #fff;
background-color: color(~`colorPalette("@{primary-color}", 5)`);
border-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
4512
|
|
|
4513
4514
4515
4516
|
.ant-calendar .ant-calendar-ok-btn:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn:focus > a:only-child {
color: currentColor;
}
|
|
4517
|
|
|
4518
4519
4520
4521
|
.ant-calendar .ant-calendar-ok-btn:hover > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn:focus > a:only-child:after {
background: transparent;
}
|
|
4522
|
|
|
4523
4524
4525
4526
4527
4528
|
.ant-calendar .ant-calendar-ok-btn:active,
.ant-calendar .ant-calendar-ok-btn.active {
color: #fff;
background-color: color(~`colorPalette("@{primary-color}", 7)`);
border-color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
4529
|
|
|
4530
4531
4532
4533
|
.ant-calendar .ant-calendar-ok-btn:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.active > a:only-child {
color: currentColor;
}
|
|
4534
|
|
|
4535
4536
4537
4538
|
.ant-calendar .ant-calendar-ok-btn:active > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn.active > a:only-child:after {
background: transparent;
}
|
|
4539
|
|
|
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
|
.ant-calendar .ant-calendar-ok-btn.disabled,
.ant-calendar .ant-calendar-ok-btn[disabled],
.ant-calendar .ant-calendar-ok-btn.disabled:hover,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover,
.ant-calendar .ant-calendar-ok-btn.disabled:focus,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus,
.ant-calendar .ant-calendar-ok-btn.disabled:active,
.ant-calendar .ant-calendar-ok-btn[disabled]:active,
.ant-calendar .ant-calendar-ok-btn.disabled.active,
.ant-calendar .ant-calendar-ok-btn[disabled].active {
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
border-color: #d9d9d9;
box-shadow: none;
}
|
|
4555
|
|
|
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
|
.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child {
color: currentColor;
}
|
|
4568
|
|
|
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
|
.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child:after,
.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child:after {
background: transparent;
}
|
|
4581
|
|
|
4582
4583
4584
4585
4586
|
.ant-calendar .ant-calendar-ok-btn-disabled {
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
border-color: #d9d9d9;
}
|
|
4587
|
|
|
4588
4589
4590
|
.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child {
color: currentColor;
}
|
|
4591
|
|
|
4592
4593
4594
|
.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child:after {
background: transparent;
}
|
|
4595
|
|
|
4596
4597
4598
4599
4600
|
.ant-calendar .ant-calendar-ok-btn-disabled:hover {
color: rgba(0, 0, 0, 0.25);
background-color: #f5f5f5;
border-color: #d9d9d9;
}
|
|
4601
|
|
|
4602
4603
4604
|
.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child {
color: currentColor;
}
|
|
4605
|
|
|
4606
4607
4608
|
.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child:after {
background: transparent;
}
|
|
4609
|
|
|
4610
4611
4612
4613
|
.ant-calendar-range-picker-input {
background-color: transparent;
border: 0;
}
|
|
4614
|
|
|
4615
4616
4617
|
.ant-calendar-range-picker-input::-moz-placeholder {
color: #bfbfbf;
}
|
|
4618
|
|
|
4619
4620
4621
|
.ant-calendar-range-picker-input:-ms-input-placeholder {
color: #bfbfbf;
}
|
|
4622
|
|
|
4623
4624
4625
|
.ant-calendar-range-picker-input::-webkit-input-placeholder {
color: #bfbfbf;
}
|
|
4626
|
|
|
4627
4628
4629
|
.ant-calendar-range-picker-separator {
color: rgba(0, 0, 0, 0.45);
}
|
|
4630
|
|
|
4631
4632
4633
|
.ant-calendar-range-left .ant-calendar-time-picker-inner {
border-right: 1px solid #e8e8e8;
}
|
|
4634
|
|
|
4635
4636
4637
|
.ant-calendar-range-right .ant-calendar-time-picker-inner {
border-left: 1px solid #e8e8e8;
}
|
|
4638
|
|
|
4639
4640
4641
|
.ant-calendar-range-middle {
color: rgba(0, 0, 0, 0.45);
}
|
|
4642
|
|
|
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
|
.ant-calendar-range .ant-calendar-input,
.ant-calendar-range .ant-calendar-time-picker-input {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
background-image: none;
border: 1px solid #d9d9d9;
border-radius: 4px;
border: 0;
box-shadow: none;
}
|
|
4653
|
|
|
4654
4655
4656
4657
|
.ant-calendar-range .ant-calendar-input::-moz-placeholder,
.ant-calendar-range .ant-calendar-time-picker-input::-moz-placeholder {
color: #bfbfbf;
}
|
|
4658
|
|
|
4659
4660
4661
4662
|
.ant-calendar-range .ant-calendar-input:-ms-input-placeholder,
.ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder {
color: #bfbfbf;
}
|
|
4663
|
|
|
4664
4665
4666
4667
|
.ant-calendar-range .ant-calendar-input::-webkit-input-placeholder,
.ant-calendar-range .ant-calendar-time-picker-input::-webkit-input-placeholder {
color: #bfbfbf;
}
|
|
4668
|
|
|
4669
4670
4671
4672
4673
|
.ant-calendar-range .ant-calendar-input:hover,
.ant-calendar-range .ant-calendar-time-picker-input:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
4674
|
|
|
4675
4676
4677
4678
4679
4680
|
.ant-calendar-range .ant-calendar-input:focus,
.ant-calendar-range .ant-calendar-time-picker-input:focus {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
4681
|
|
|
4682
4683
4684
4685
4686
|
.ant-calendar-range .ant-calendar-input-disabled,
.ant-calendar-range .ant-calendar-time-picker-input-disabled {
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
4687
|
|
|
4688
4689
4690
4691
4692
|
.ant-calendar-range .ant-calendar-input-disabled:hover,
.ant-calendar-range .ant-calendar-time-picker-input-disabled:hover {
border-color: #e6d8d8;
border-right-width: 1px !important;
}
|
|
4693
|
|
|
4694
4695
4696
4697
|
.ant-calendar-range .ant-calendar-input:focus,
.ant-calendar-range .ant-calendar-time-picker-input:focus {
box-shadow: none;
}
|
|
4698
|
|
|
4699
4700
4701
|
.ant-calendar-range .ant-calendar-in-range-cell {
border-radius: 0;
}
|
|
4702
|
|
|
4703
4704
4705
4706
4707
|
.ant-calendar-range .ant-calendar-in-range-cell:before {
background: color(~`colorPalette("@{primary-color}", 1)`);
border-radius: 0;
border: 0;
}
|
|
4708
|
|
|
4709
4710
4711
4712
4713
|
.ant-calendar-range .ant-calendar-header,
.ant-calendar-range .ant-calendar-month-panel-header,
.ant-calendar-range .ant-calendar-year-panel-header {
border-bottom: 0;
}
|
|
4714
|
|
|
4715
4716
4717
4718
4719
|
.ant-calendar-range .ant-calendar-body,
.ant-calendar-range .ant-calendar-month-panel-body,
.ant-calendar-range .ant-calendar-year-panel-body {
border-top: 1px solid #e8e8e8;
}
|
|
4720
|
|
|
4721
4722
4723
|
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-inner {
background: none;
}
|
|
4724
|
|
|
4725
4726
4727
4728
|
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-combobox {
background-color: #fff;
border-top: 1px solid #e8e8e8;
}
|
|
4729
|
|
|
4730
4731
4732
|
.ant-calendar-range.ant-calendar-show-time-picker .ant-calendar-body {
border-top-color: transparent;
}
|
|
4733
|
|
|
4734
4735
4736
|
.ant-calendar-time-picker {
background-color: #fff;
}
|
|
4737
|
|
|
4738
4739
4740
4741
|
.ant-calendar-time-picker-inner {
background-color: #fff;
background-clip: padding-box;
}
|
|
4742
|
|
|
4743
4744
4745
|
.ant-calendar-time-picker-select {
border-right: 1px solid #e8e8e8;
}
|
|
4746
|
|
|
4747
4748
4749
|
.ant-calendar-time-picker-select:first-child {
border-left: 0;
}
|
|
4750
|
|
|
4751
4752
4753
|
.ant-calendar-time-picker-select:last-child {
border-right: 0;
}
|
|
4754
|
|
|
4755
4756
4757
|
.ant-calendar-time-picker-select li:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
4758
|
|
|
4759
4760
4761
|
li.ant-calendar-time-picker-select-option-selected {
background: #f5f5f5;
}
|
|
4762
|
|
|
4763
4764
4765
|
li.ant-calendar-time-picker-select-option-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
4766
|
|
|
4767
4768
4769
|
li.ant-calendar-time-picker-select-option-disabled:hover {
background: transparent;
}
|
|
4770
|
|
|
4771
4772
4773
|
.ant-calendar-time .ant-calendar-day-select {
color: rgba(0, 0, 0, 0.85);
}
|
|
4774
|
|
|
4775
4776
4777
|
.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
4778
|
|
|
4779
4780
4781
4782
|
.ant-calendar-month-panel {
border-radius: 4px;
background: #fff;
}
|
|
4783
|
|
|
4784
4785
4786
|
.ant-calendar-month-panel-header {
border-bottom: 1px solid #e8e8e8;
}
|
|
4787
|
|
|
4788
4789
4790
|
.ant-calendar-month-panel-header a:hover {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
4791
|
|
|
4792
4793
4794
4795
4796
4797
|
.ant-calendar-month-panel-header .ant-calendar-month-panel-century-select,
.ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,
.ant-calendar-month-panel-header .ant-calendar-month-panel-year-select,
.ant-calendar-month-panel-header .ant-calendar-month-panel-month-select {
color: rgba(0, 0, 0, 0.85);
}
|
|
4798
|
|
|
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
|
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
color: rgba(0, 0, 0, 0.45);
}
|
|
4809
|
|
|
4810
4811
4812
|
.ant-calendar-month-panel-table {
border-collapse: separate;
}
|
|
4813
|
|
|
4814
4815
4816
4817
|
.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month {
background: @primary-color;
color: #fff;
}
|
|
4818
|
|
|
4819
4820
4821
4822
|
.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover {
background: @primary-color;
color: #fff;
}
|
|
4823
|
|
|
4824
4825
4826
4827
4828
|
.ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month,
.ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month:hover {
color: #bcbcbc;
background: #f5f5f5;
}
|
|
4829
|
|
|
4830
4831
4832
4833
4834
|
.ant-calendar-month-panel-month {
color: rgba(0, 0, 0, 0.65);
background: transparent;
border-radius: 2px;
}
|
|
4835
|
|
|
4836
4837
4838
|
.ant-calendar-month-panel-month:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
4839
|
|
|
4840
4841
4842
4843
|
.ant-calendar-year-panel {
border-radius: 4px;
background: #fff;
}
|
|
4844
|
|
|
4845
4846
4847
|
.ant-calendar-year-panel-header {
border-bottom: 1px solid #e8e8e8;
}
|
|
4848
|
|
|
4849
4850
4851
|
.ant-calendar-year-panel-header a:hover {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
4852
|
|
|
4853
4854
4855
4856
4857
4858
|
.ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,
.ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,
.ant-calendar-year-panel-header .ant-calendar-year-panel-year-select,
.ant-calendar-year-panel-header .ant-calendar-year-panel-month-select {
color: rgba(0, 0, 0, 0.85);
}
|
|
4859
|
|
|
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
|
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
color: rgba(0, 0, 0, 0.45);
}
|
|
4870
|
|
|
4871
4872
4873
|
.ant-calendar-year-panel-table {
border-collapse: separate;
}
|
|
4874
|
|
|
4875
4876
4877
4878
4879
|
.ant-calendar-year-panel-year {
color: rgba(0, 0, 0, 0.65);
background: transparent;
border-radius: 2px;
}
|
|
4880
|
|
|
4881
4882
4883
|
.ant-calendar-year-panel-year:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
4884
|
|
|
4885
4886
4887
4888
|
.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year {
background: @primary-color;
color: #fff;
}
|
|
4889
|
|
|
4890
4891
4892
4893
|
.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover {
background: @primary-color;
color: #fff;
}
|
|
4894
|
|
|
4895
4896
4897
4898
|
.ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,
.ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year {
color: rgba(0, 0, 0, 0.25);
}
|
|
4899
|
|
|
4900
4901
4902
4903
|
.ant-calendar-decade-panel {
background: #fff;
border-radius: 4px;
}
|
|
4904
|
|
|
4905
4906
4907
|
.ant-calendar-decade-panel-header {
border-bottom: 1px solid #e8e8e8;
}
|
|
4908
|
|
|
4909
4910
4911
|
.ant-calendar-decade-panel-header a:hover {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
4912
|
|
|
4913
4914
4915
4916
4917
4918
|
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select {
color: rgba(0, 0, 0, 0.85);
}
|
|
4919
|
|
|
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
|
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
color: rgba(0, 0, 0, 0.45);
}
|
|
4930
|
|
|
4931
4932
4933
|
.ant-calendar-decade-panel-table {
border-collapse: separate;
}
|
|
4934
|
|
|
4935
4936
4937
4938
4939
|
.ant-calendar-decade-panel-decade {
color: rgba(0, 0, 0, 0.65);
background: transparent;
border-radius: 2px;
}
|
|
4940
|
|
|
4941
4942
4943
|
.ant-calendar-decade-panel-decade:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
4944
|
|
|
4945
4946
4947
4948
|
.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade {
background: @primary-color;
color: #fff;
}
|
|
4949
|
|
|
4950
4951
4952
4953
|
.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover {
background: @primary-color;
color: #fff;
}
|
|
4954
|
|
|
4955
4956
4957
4958
|
.ant-calendar-decade-panel-last-century-cell .ant-calendar-decade-panel-decade,
.ant-calendar-decade-panel-next-century-cell .ant-calendar-decade-panel-decade {
color: rgba(0, 0, 0, 0.25);
}
|
|
4959
|
|
|
4960
4961
4962
|
.ant-calendar-week-number .ant-calendar-body tr:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
4963
|
|
|
4964
4965
4966
|
.ant-calendar-week-number .ant-calendar-body tr.ant-calendar-active-week {
background: color(~`colorPalette("@{primary-color}", 2)`);
}
|
|
4967
|
|
|
4968
4969
4970
4971
4972
|
.ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day .ant-calendar-date,
.ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day:hover .ant-calendar-date {
background: transparent;
color: rgba(0, 0, 0, 0.65);
}
|
|
4973
|
|
|
4974
4975
4976
4977
|
.ant-divider {
color: rgba(0, 0, 0, 0.65);
background: #e8e8e8;
}
|
|
4978
|
|
|
4979
4980
4981
4982
4983
4984
|
.ant-divider-horizontal.ant-divider-with-text,
.ant-divider-horizontal.ant-divider-with-text-left,
.ant-divider-horizontal.ant-divider-with-text-right {
background: transparent;
color: rgba(0, 0, 0, 0.85);
}
|
|
4985
|
|
|
4986
4987
4988
4989
4990
4991
4992
4993
|
.ant-divider-horizontal.ant-divider-with-text:before,
.ant-divider-horizontal.ant-divider-with-text-left:before,
.ant-divider-horizontal.ant-divider-with-text-right:before,
.ant-divider-horizontal.ant-divider-with-text:after,
.ant-divider-horizontal.ant-divider-with-text-left:after,
.ant-divider-horizontal.ant-divider-with-text-right:after {
border-top: 1px solid #e8e8e8;
}
|
|
4994
|
|
|
4995
4996
4997
4998
|
.ant-divider-dashed {
background: none;
border-top: 1px dashed #e8e8e8;
}
|
|
4999
|
|
|
5000
5001
5002
5003
5004
|
.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed,
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed,
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed {
border-top: 0;
}
|
|
5005
|
|
|
5006
5007
5008
5009
5010
5011
5012
5013
|
.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed:before,
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed:before,
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed:before,
.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed:after,
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed:after,
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed:after {
border-style: dashed none none;
}
|
|
5014
|
|
|
5015
5016
5017
|
.ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper {
box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}
|
|
5018
|
|
|
5019
5020
5021
|
.ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper {
box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}
|
|
5022
|
|
|
5023
5024
5025
|
.ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
|
|
5026
|
|
|
5027
5028
5029
|
.ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper {
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}
|
|
5030
|
|
|
5031
5032
5033
|
.ant-drawer-title {
color: rgba(0, 0, 0, 0.85);
}
|
|
5034
|
|
|
5035
5036
5037
5038
5039
|
.ant-drawer-content {
background-color: #fff;
border: 0;
background-clip: padding-box;
}
|
|
5040
|
|
|
5041
5042
5043
5044
5045
|
.ant-drawer-close {
border: 0;
background: transparent;
color: rgba(0, 0, 0, 0.45);
}
|
|
5046
|
|
|
5047
5048
5049
5050
|
.ant-drawer-close:focus,
.ant-drawer-close:hover {
color: #444;
}
|
|
5051
|
|
|
5052
5053
5054
5055
5056
5057
|
.ant-drawer-header {
border-radius: 4px 4px 0 0;
background: #fff;
color: rgba(0, 0, 0, 0.65);
border-bottom: 1px solid #e8e8e8;
}
|
|
5058
|
|
|
5059
5060
5061
|
.ant-drawer-mask {
background-color: rgba(0, 0, 0, 0.65);
}
|
|
5062
|
|
|
5063
5064
5065
|
.ant-drawer-open-content {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
|
|
5066
|
|
|
5067
5068
5069
|
.ant-dropdown {
color: rgba(0, 0, 0, 0.65);
}
|
|
5070
|
|
|
5071
5072
5073
5074
5075
5076
|
.ant-dropdown-menu {
background-color: #fff;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
background-clip: padding-box;
}
|
|
5077
|
|
|
5078
5079
5080
|
.ant-dropdown-menu-item-group-title {
color: rgba(0, 0, 0, 0.45);
}
|
|
5081
|
|
|
5082
5083
5084
5085
|
.ant-dropdown-menu-item,
.ant-dropdown-menu-submenu-title {
color: rgba(0, 0, 0, 0.65);
}
|
|
5086
|
|
|
5087
5088
5089
5090
|
.ant-dropdown-menu-item > a,
.ant-dropdown-menu-submenu-title > a {
color: rgba(0, 0, 0, 0.65);
}
|
|
5091
|
|
|
5092
5093
5094
5095
5096
5097
5098
|
.ant-dropdown-menu-item-selected,
.ant-dropdown-menu-submenu-title-selected,
.ant-dropdown-menu-item-selected > a,
.ant-dropdown-menu-submenu-title-selected > a {
color: @primary-color;
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
5099
|
|
|
5100
5101
5102
5103
|
.ant-dropdown-menu-item:hover,
.ant-dropdown-menu-submenu-title:hover {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
5104
|
|
|
5105
5106
5107
5108
|
.ant-dropdown-menu-item-disabled,
.ant-dropdown-menu-submenu-title-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
5109
|
|
|
5110
5111
5112
5113
5114
|
.ant-dropdown-menu-item-disabled:hover,
.ant-dropdown-menu-submenu-title-disabled:hover {
color: rgba(0, 0, 0, 0.25);
background-color: #fff;
}
|
|
5115
|
|
|
5116
5117
5118
5119
|
.ant-dropdown-menu-item-divider,
.ant-dropdown-menu-submenu-title-divider {
background-color: #e8e8e8;
}
|
|
5120
|
|
|
5121
5122
5123
5124
|
.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
color: rgba(0, 0, 0, 0.45);
}
|
|
5125
|
|
|
5126
5127
5128
5129
|
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title,
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
color: rgba(0, 0, 0, 0.25);
}
|
|
5130
|
|
|
5131
5132
5133
5134
|
.ant-dropdown-menu-dark,
.ant-dropdown-menu-dark .ant-dropdown-menu {
background: #001529;
}
|
|
5135
|
|
|
5136
5137
5138
5139
5140
|
.ant-dropdown-menu-dark .ant-dropdown-menu-item,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a {
color: rgba(255, 255, 255, 0.65);
}
|
|
5141
|
|
|
5142
5143
5144
5145
5146
|
.ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow:after,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow:after,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a .ant-dropdown-menu-submenu-arrow:after {
color: rgba(255, 255, 255, 0.65);
}
|
|
5147
|
|
|
5148
5149
5150
5151
5152
5153
|
.ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover {
color: #fff;
background: transparent;
}
|
|
5154
|
|
|
5155
5156
5157
5158
5159
5160
|
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a {
background: @primary-color;
color: #fff;
}
|
|
5161
|
|
|
5162
5163
5164
|
.ant-form {
color: rgba(0, 0, 0, 0.65);
}
|
|
5165
|
|
|
5166
5167
5168
5169
5170
|
.ant-form legend {
color: rgba(0, 0, 0, 0.45);
border: 0;
border-bottom: 1px solid #d9d9d9;
}
|
|
5171
|
|
|
5172
5173
5174
|
.ant-form output {
color: rgba(0, 0, 0, 0.65);
}
|
|
5175
|
|
|
5176
5177
5178
|
.ant-form-item-required:before {
color: #f5222d;
}
|
|
5179
|
|
|
5180
5181
5182
|
.ant-form-item {
color: rgba(0, 0, 0, 0.65);
}
|
|
5183
|
|
|
5184
5185
5186
|
.ant-form-item-label label {
color: rgba(0, 0, 0, 0.85);
}
|
|
5187
|
|
|
5188
5189
5190
5191
|
.ant-form-explain,
.ant-form-extra {
color: rgba(0, 0, 0, 0.45);
}
|
|
5192
|
|
|
5193
5194
5195
|
form .ant-upload {
background: transparent;
}
|
|
5196
|
|
|
5197
5198
5199
5200
|
.ant-input-group-wrap .ant-select-selection {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
|
|
5201
|
|
|
5202
5203
5204
|
.ant-input-group-wrap .ant-select-selection:hover {
border-color: #d9d9d9;
}
|
|
5205
|
|
|
5206
5207
5208
|
.ant-input-group-wrap .ant-select-selection--single {
background-color: #eee;
}
|
|
5209
|
|
|
5210
5211
5212
5213
|
.ant-input-group-wrap .ant-select-open .ant-select-selection {
border-color: #d9d9d9;
box-shadow: none;
}
|
|
5214
|
|
|
5215
5216
5217
|
.has-success.has-feedback .ant-form-item-children-icon {
color: #52c41a;
}
|
|
5218
|
|
|
5219
5220
5221
5222
|
.has-warning .ant-form-explain,
.has-warning .ant-form-split {
color: #faad14;
}
|
|
5223
|
|
|
5224
5225
5226
5227
|
.has-warning .ant-input,
.has-warning .ant-input:hover {
border-color: #faad14;
}
|
|
5228
|
|
|
5229
5230
5231
5232
5233
|
.has-warning .ant-input:focus {
border-color: #ffc53d;
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
border-right-width: 1px !important;
}
|
|
5234
|
|
|
5235
5236
5237
|
.has-warning .ant-input:not([disabled]):hover {
border-color: #faad14;
}
|
|
5238
|
|
|
5239
5240
5241
5242
5243
|
.has-warning .ant-calendar-picker-open .ant-calendar-picker-input {
border-color: #ffc53d;
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
border-right-width: 1px !important;
}
|
|
5244
|
|
|
5245
5246
5247
|
.has-warning .ant-input-prefix {
color: #faad14;
}
|
|
5248
|
|
|
5249
5250
5251
5252
5253
|
.has-warning .ant-input-group-addon {
color: #faad14;
border-color: #faad14;
background-color: #fff;
}
|
|
5254
|
|
|
5255
5256
5257
|
.has-warning .has-feedback {
color: #faad14;
}
|
|
5258
|
|
|
5259
5260
5261
|
.has-warning.has-feedback .ant-form-item-children-icon {
color: #faad14;
}
|
|
5262
|
|
|
5263
5264
5265
|
.has-warning .ant-select-selection {
border-color: #faad14;
}
|
|
5266
|
|
|
5267
5268
5269
5270
5271
5272
|
.has-warning .ant-select-open .ant-select-selection,
.has-warning .ant-select-focused .ant-select-selection {
border-color: #ffc53d;
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
border-right-width: 1px !important;
}
|
|
5273
|
|
|
5274
5275
5276
5277
5278
5279
5280
|
.has-warning .ant-calendar-picker-icon:after,
.has-warning .ant-time-picker-icon:after,
.has-warning .ant-picker-icon:after,
.has-warning .ant-select-arrow,
.has-warning .ant-cascader-picker-arrow {
color: #faad14;
}
|
|
5281
|
|
|
5282
5283
5284
5285
|
.has-warning .ant-input-number,
.has-warning .ant-time-picker-input {
border-color: #faad14;
}
|
|
5286
|
|
|
5287
5288
5289
5290
5291
5292
5293
5294
|
.has-warning .ant-input-number-focused,
.has-warning .ant-time-picker-input-focused,
.has-warning .ant-input-number:focus,
.has-warning .ant-time-picker-input:focus {
border-color: #ffc53d;
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
border-right-width: 1px !important;
}
|
|
5295
|
|
|
5296
5297
5298
5299
|
.has-warning .ant-input-number:not([disabled]):hover,
.has-warning .ant-time-picker-input:not([disabled]):hover {
border-color: #faad14;
}
|
|
5300
|
|
|
5301
5302
5303
5304
5305
|
.has-warning .ant-cascader-picker:focus .ant-cascader-input {
border-color: #ffc53d;
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
border-right-width: 1px !important;
}
|
|
5306
|
|
|
5307
5308
5309
5310
|
.has-error .ant-form-explain,
.has-error .ant-form-split {
color: #f5222d;
}
|
|
5311
|
|
|
5312
5313
5314
5315
|
.has-error .ant-input,
.has-error .ant-input:hover {
border-color: #f5222d;
}
|
|
5316
|
|
|
5317
5318
5319
5320
5321
|
.has-error .ant-input:focus {
border-color: #ff4d4f;
box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
border-right-width: 1px !important;
}
|
|
5322
|
|
|
5323
5324
5325
|
.has-error .ant-input:not([disabled]):hover {
border-color: #f5222d;
}
|
|
5326
|
|
|
5327
5328
5329
5330
5331
|
.has-error .ant-calendar-picker-open .ant-calendar-picker-input {
border-color: #ff4d4f;
box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
border-right-width: 1px !important;
}
|
|
5332
|
|
|
5333
5334
5335
|
.has-error .ant-input-prefix {
color: #f5222d;
}
|
|
5336
|
|
|
5337
5338
5339
5340
5341
|
.has-error .ant-input-group-addon {
color: #f5222d;
border-color: #f5222d;
background-color: #fff;
}
|
|
5342
|
|
|
5343
5344
5345
|
.has-error .has-feedback {
color: #f5222d;
}
|
|
5346
|
|
|
5347
5348
5349
|
.has-error.has-feedback .ant-form-item-children-icon {
color: #f5222d;
}
|
|
5350
|
|
|
5351
5352
5353
|
.has-error .ant-select-selection {
border-color: #f5222d;
}
|
|
5354
|
|
|
5355
5356
5357
5358
5359
5360
|
.has-error .ant-select-open .ant-select-selection,
.has-error .ant-select-focused .ant-select-selection {
border-color: #ff4d4f;
box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
border-right-width: 1px !important;
}
|
|
5361
|
|
|
5362
5363
5364
|
.has-error .ant-select.ant-select-auto-complete .ant-input:focus {
border-color: #f5222d;
}
|
|
5365
|
|
|
5366
5367
5368
5369
|
.has-error .ant-input-group-addon .ant-select-selection {
border-color: transparent;
box-shadow: none;
}
|
|
5370
|
|
|
5371
5372
5373
5374
5375
5376
5377
|
.has-error .ant-calendar-picker-icon:after,
.has-error .ant-time-picker-icon:after,
.has-error .ant-picker-icon:after,
.has-error .ant-select-arrow,
.has-error .ant-cascader-picker-arrow {
color: #f5222d;
}
|
|
5378
|
|
|
5379
5380
5381
5382
|
.has-error .ant-input-number,
.has-error .ant-time-picker-input {
border-color: #f5222d;
}
|
|
5383
|
|
|
5384
5385
5386
5387
5388
5389
5390
5391
|
.has-error .ant-input-number-focused,
.has-error .ant-time-picker-input-focused,
.has-error .ant-input-number:focus,
.has-error .ant-time-picker-input:focus {
border-color: #ff4d4f;
box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
border-right-width: 1px !important;
}
|
|
5392
|
|
|
5393
5394
5395
5396
|
.has-error .ant-input-number:not([disabled]):hover,
.has-error .ant-time-picker-input:not([disabled]):hover {
border-color: #f5222d;
}
|
|
5397
|
|
|
5398
5399
5400
5401
|
.has-error .ant-mention-wrapper .ant-mention-editor,
.has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover {
border-color: #f5222d;
}
|
|
5402
|
|
|
5403
5404
5405
5406
5407
5408
|
.has-error .ant-mention-wrapper.ant-mention-active:not([disabled]) .ant-mention-editor,
.has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus {
border-color: #ff4d4f;
box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
border-right-width: 1px !important;
}
|
|
5409
|
|
|
5410
5411
5412
5413
5414
|
.has-error .ant-cascader-picker:focus .ant-cascader-input {
border-color: #ff4d4f;
box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
border-right-width: 1px !important;
}
|
|
5415
|
|
|
5416
5417
5418
|
.is-validating.has-feedback .ant-form-item-children-icon {
color: @primary-color;
}
|
|
5419
|
|
|
5420
5421
5422
5423
5424
5425
5426
|
.ant-input-number {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
background-image: none;
border: 1px solid #d9d9d9;
border-radius: 4px;
}
|
|
5427
|
|
|
5428
5429
5430
|
.ant-input-number::-moz-placeholder {
color: #bfbfbf;
}
|
|
5431
|
|
|
5432
5433
5434
|
.ant-input-number:-ms-input-placeholder {
color: #bfbfbf;
}
|
|
5435
|
|
|
5436
5437
5438
|
.ant-input-number::-webkit-input-placeholder {
color: #bfbfbf;
}
|
|
5439
|
|
|
5440
5441
5442
5443
|
.ant-input-number:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
5444
|
|
|
5445
5446
5447
5448
5449
|
.ant-input-number:focus {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
5450
|
|
|
5451
5452
5453
5454
|
.ant-input-number-disabled {
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
5455
|
|
|
5456
5457
5458
5459
|
.ant-input-number-disabled:hover {
border-color: #e6d8d8;
border-right-width: 1px !important;
}
|
|
5460
|
|
|
5461
5462
5463
|
.ant-input-number-handler {
color: rgba(0, 0, 0, 0.45);
}
|
|
5464
|
|
|
5465
5466
5467
|
.ant-input-number-handler:active {
background: #f4f4f4;
}
|
|
5468
|
|
|
5469
5470
5471
5472
|
.ant-input-number-handler:hover .ant-input-number-handler-up-inner,
.ant-input-number-handler:hover .ant-input-number-handler-down-inner {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
5473
|
|
|
5474
5475
5476
5477
|
.ant-input-number-handler-up-inner,
.ant-input-number-handler-down-inner {
color: rgba(0, 0, 0, 0.45);
}
|
|
5478
|
|
|
5479
5480
5481
5482
|
.ant-input-number:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
5483
|
|
|
5484
5485
5486
5487
5488
|
.ant-input-number-focused {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
5489
|
|
|
5490
5491
5492
5493
|
.ant-input-number-disabled {
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
5494
|
|
|
5495
5496
5497
5498
|
.ant-input-number-disabled:hover {
border-color: #e6d8d8;
border-right-width: 1px !important;
}
|
|
5499
|
|
|
5500
5501
5502
5503
5504
|
.ant-input-number-input {
background-color: transparent;
border: 0;
border-radius: 4px;
}
|
|
5505
|
|
|
5506
5507
5508
|
.ant-input-number-input::-moz-placeholder {
color: #bfbfbf;
}
|
|
5509
|
|
|
5510
5511
5512
|
.ant-input-number-input:-ms-input-placeholder {
color: #bfbfbf;
}
|
|
5513
|
|
|
5514
5515
5516
|
.ant-input-number-input::-webkit-input-placeholder {
color: #bfbfbf;
}
|
|
5517
|
|
|
5518
5519
5520
5521
5522
|
.ant-input-number-handler-wrap {
border-left: 1px solid #d9d9d9;
background: #fff;
border-radius: 0 4px 4px 0;
}
|
|
5523
|
|
|
5524
5525
5526
|
.ant-input-number-handler-down {
border-top: 1px solid #d9d9d9;
}
|
|
5527
|
|
|
5528
5529
5530
5531
|
.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner,
.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner {
color: rgba(0, 0, 0, 0.25);
}
|
|
5532
|
|
|
5533
5534
5535
5536
5537
5538
5539
|
.ant-input {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
background-image: none;
border: 1px solid #d9d9d9;
border-radius: 4px;
}
|
|
5540
|
|
|
5541
5542
5543
|
.ant-input::-moz-placeholder {
color: #bfbfbf;
}
|
|
5544
|
|
|
5545
5546
5547
|
.ant-input:-ms-input-placeholder {
color: #bfbfbf;
}
|
|
5548
|
|
|
5549
5550
5551
|
.ant-input::-webkit-input-placeholder {
color: #bfbfbf;
}
|
|
5552
|
|
|
5553
5554
5555
5556
|
.ant-input:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
5557
|
|
|
5558
5559
5560
5561
5562
|
.ant-input:focus {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
5563
|
|
|
5564
5565
5566
5567
|
.ant-input-disabled {
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
5568
|
|
|
5569
5570
5571
5572
|
.ant-input-disabled:hover {
border-color: #e6d8d8;
border-right-width: 1px !important;
}
|
|
5573
|
|
|
5574
5575
5576
5577
5578
|
.ant-input-group {
color: rgba(0, 0, 0, 0.65);
border-collapse: separate;
border-spacing: 0;
}
|
|
5579
|
|
|
5580
5581
5582
5583
5584
|
.ant-input-group-addon:not(:first-child):not(:last-child),
.ant-input-group-wrap:not(:first-child):not(:last-child),
.ant-input-group > .ant-input:not(:first-child):not(:last-child) {
border-radius: 0;
}
|
|
5585
|
|
|
5586
5587
5588
|
.ant-input-group .ant-input:focus {
border-right-width: 1px;
}
|
|
5589
|
|
|
5590
5591
5592
|
.ant-input-group .ant-input:hover {
border-right-width: 1px;
}
|
|
5593
|
|
|
5594
5595
5596
5597
5598
5599
|
.ant-input-group-addon {
color: rgba(0, 0, 0, 0.65);
background-color: #fafafa;
border: 1px solid #d9d9d9;
border-radius: 4px;
}
|
|
5600
|
|
|
5601
5602
5603
5604
5605
|
.ant-input-group-addon .ant-select .ant-select-selection {
background-color: inherit;
border: 1px solid transparent;
box-shadow: none;
}
|
|
5606
|
|
|
5607
5608
5609
5610
|
.ant-input-group-addon .ant-select-open .ant-select-selection,
.ant-input-group-addon .ant-select-focused .ant-select-selection {
color: @primary-color;
}
|
|
5611
|
|
|
5612
5613
5614
5615
5616
|
.ant-input-group > .ant-input:first-child,
.ant-input-group-addon:first-child {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
|
|
5617
|
|
|
5618
5619
5620
5621
5622
|
.ant-input-group > .ant-input:first-child .ant-select .ant-select-selection,
.ant-input-group-addon:first-child .ant-select .ant-select-selection {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
|
|
5623
|
|
|
5624
5625
5626
5627
|
.ant-input-group > .ant-input-affix-wrapper:not(:first-child) .ant-input {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
|
|
5628
|
|
|
5629
5630
5631
5632
|
.ant-input-group > .ant-input-affix-wrapper:not(:last-child) .ant-input {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
|
|
5633
|
|
|
5634
5635
5636
|
.ant-input-group-addon:first-child {
border-right: 0;
}
|
|
5637
|
|
|
5638
5639
5640
|
.ant-input-group-addon:last-child {
border-left: 0;
}
|
|
5641
|
|
|
5642
5643
5644
5645
5646
|
.ant-input-group > .ant-input:last-child,
.ant-input-group-addon:last-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
|
|
5647
|
|
|
5648
5649
5650
5651
5652
|
.ant-input-group > .ant-input:last-child .ant-select .ant-select-selection,
.ant-input-group-addon:last-child .ant-select .ant-select-selection {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
|
|
5653
|
|
|
5654
5655
5656
5657
5658
5659
|
.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child),
.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child),
.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child) {
border-right-width: 1px;
border-right-color: transparent;
}
|
|
5660
|
|
|
5661
5662
5663
5664
5665
5666
|
.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):hover,
.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):hover,
.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
5667
|
|
|
5668
5669
5670
5671
5672
5673
5674
|
.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):focus,
.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):focus,
.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):focus {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
5675
|
|
|
5676
5677
5678
5679
|
.ant-input-group.ant-input-group-compact > * {
border-radius: 0;
border-right-width: 0;
}
|
|
5680
|
|
|
5681
5682
5683
|
.ant-input-group.ant-input-group-compact > span:not(:last-child) > .ant-input {
border-right-width: 0;
}
|
|
5684
|
|
|
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
|
.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper .ant-mention-editor,
.ant-input-group.ant-input-group-compact > .ant-time-picker .ant-time-picker-input {
border-radius: 0;
border-right-width: 1px;
border-right-color: transparent;
}
|
|
5695
|
|
|
5696
5697
5698
5699
5700
5701
5702
5703
5704
|
.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection:hover,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper .ant-mention-editor:hover,
.ant-input-group.ant-input-group-compact > .ant-time-picker .ant-time-picker-input:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
5705
|
|
|
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
|
.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection:focus,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper .ant-mention-editor:focus,
.ant-input-group.ant-input-group-compact > .ant-time-picker .ant-time-picker-input:focus {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
5716
|
|
|
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
|
.ant-input-group.ant-input-group-compact > *:first-child,
.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selection,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:first-child .ant-mention-editor,
.ant-input-group.ant-input-group-compact > .ant-time-picker:first-child .ant-time-picker-input {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
|
|
5727
|
|
|
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
|
.ant-input-group.ant-input-group-compact > *:last-child,
.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor,
.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
border-right-width: 1px;
border-right-color: #d9d9d9;
}
|
|
5741
|
|
|
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
|
.ant-input-group.ant-input-group-compact > *:last-child:hover,
.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection:hover,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor:hover,
.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
5753
|
|
|
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
|
.ant-input-group.ant-input-group-compact > *:last-child:focus,
.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection:focus,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor:focus,
.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input:focus {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
5766
|
|
|
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
|
.ant-input-group.ant-input-group-compact > *:last-child:focus .ant-cascader-input,
.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection:focus .ant-cascader-input,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input:focus .ant-cascader-input,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input:focus .ant-cascader-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input:focus .ant-cascader-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input:focus .ant-cascader-input,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor:focus .ant-cascader-input,
.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input:focus .ant-cascader-input {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
5779
|
|
|
5780
5781
5782
|
.ant-input-affix-wrapper {
color: rgba(0, 0, 0, 0.65);
}
|
|
5783
|
|
|
5784
5785
5786
5787
|
.ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
5788
|
|
|
5789
5790
5791
5792
|
.ant-input-affix-wrapper .ant-input-prefix,
.ant-input-affix-wrapper .ant-input-suffix {
color: rgba(0, 0, 0, 0.65);
}
|
|
5793
|
|
|
5794
5795
5796
|
.ant-input-search-icon {
color: rgba(0, 0, 0, 0.45);
}
|
|
5797
|
|
|
5798
5799
5800
|
.ant-input-search-icon:hover {
color: #333;
}
|
|
5801
|
|
|
5802
5803
5804
5805
|
.ant-input-search > .ant-input-suffix > .ant-input-search-button {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
|
|
5806
|
|
|
5807
5808
5809
|
.ant-layout {
background: #f0f2f5;
}
|
|
5810
|
|
|
5811
5812
5813
|
.ant-layout-header {
background: #001529;
}
|
|
5814
|
|
|
5815
5816
5817
5818
|
.ant-layout-footer {
background: #f0f2f5;
color: rgba(0, 0, 0, 0.65);
}
|
|
5819
|
|
|
5820
5821
5822
|
.ant-layout-sider {
background: #001529;
}
|
|
5823
|
|
|
5824
5825
5826
5827
|
.ant-layout-sider-trigger {
color: #fff;
background: #002140;
}
|
|
5828
|
|
|
5829
5830
5831
5832
5833
|
.ant-layout-sider-zero-width-trigger {
background: #001529;
color: #fff;
border-radius: 0 4px 4px 0;
}
|
|
5834
|
|
|
5835
5836
5837
|
.ant-layout-sider-zero-width-trigger:hover {
background: #192c3e;
}
|
|
5838
|
|
|
5839
5840
5841
|
.ant-layout-sider-light {
background: #fff;
}
|
|
5842
|
|
|
5843
5844
5845
5846
|
.ant-layout-sider-light .ant-layout-sider-trigger {
color: rgba(0, 0, 0, 0.65);
background: #fff;
}
|
|
5847
|
|
|
5848
5849
5850
5851
|
.ant-layout-sider-light .ant-layout-sider-zero-width-trigger {
color: rgba(0, 0, 0, 0.65);
background: #fff;
}
|
|
5852
|
|
|
5853
5854
5855
|
.ant-list {
color: rgba(0, 0, 0, 0.65);
}
|
|
5856
|
|
|
5857
5858
5859
|
.ant-list-empty-text {
color: rgba(0, 0, 0, 0.45);
}
|
|
5860
|
|
|
5861
5862
5863
|
.ant-list-item-meta-title {
color: rgba(0, 0, 0, 0.65);
}
|
|
5864
|
|
|
5865
5866
5867
|
.ant-list-item-meta-title > a {
color: rgba(0, 0, 0, 0.65);
}
|
|
5868
|
|
|
5869
5870
5871
|
.ant-list-item-meta-title > a:hover {
color: @primary-color;
}
|
|
5872
|
|
|
5873
5874
5875
|
.ant-list-item-meta-description {
color: rgba(0, 0, 0, 0.45);
}
|
|
5876
|
|
|
5877
5878
5879
|
.ant-list-item-action > li {
color: rgba(0, 0, 0, 0.45);
}
|
|
5880
|
|
|
5881
5882
5883
|
.ant-list-item-action-split {
background-color: #e8e8e8;
}
|
|
5884
|
|
|
5885
5886
5887
|
.ant-list-empty {
color: rgba(0, 0, 0, 0.45);
}
|
|
5888
|
|
|
5889
5890
5891
|
.ant-list-split .ant-list-item {
border-bottom: 1px solid #e8e8e8;
}
|
|
5892
|
|
|
5893
5894
5895
|
.ant-list-split .ant-list-item:last-child {
border-bottom: none;
}
|
|
5896
|
|
|
5897
5898
5899
|
.ant-list-split .ant-list-header {
border-bottom: 1px solid #e8e8e8;
}
|
|
5900
|
|
|
5901
5902
5903
|
.ant-list-something-after-last-item .ant-spin-container > .ant-list-item:last-child {
border-bottom: 1px solid #e8e8e8;
}
|
|
5904
|
|
|
5905
5906
5907
|
.ant-list-vertical .ant-list-item-meta-title {
color: rgba(0, 0, 0, 0.85);
}
|
|
5908
|
|
|
5909
5910
5911
|
.ant-list-vertical .ant-list-item-content {
color: rgba(0, 0, 0, 0.65);
}
|
|
5912
|
|
|
5913
5914
5915
|
.ant-list-grid .ant-list-item {
border-bottom: none;
}
|
|
5916
|
|
|
5917
5918
5919
5920
|
.ant-list-bordered {
border-radius: 4px;
border: 1px solid #d9d9d9;
}
|
|
5921
|
|
|
5922
5923
5924
|
.ant-list-bordered .ant-list-item {
border-bottom: 1px solid #e8e8e8;
}
|
|
5925
|
|
|
5926
5927
5928
|
.ant-mention-wrapper {
color: rgba(0, 0, 0, 0.65);
}
|
|
5929
|
|
|
5930
5931
5932
5933
5934
5935
5936
|
.ant-mention-wrapper .ant-mention-editor {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
background-image: none;
border: 1px solid #d9d9d9;
border-radius: 4px;
}
|
|
5937
|
|
|
5938
5939
5940
|
.ant-mention-wrapper .ant-mention-editor::-moz-placeholder {
color: #bfbfbf;
}
|
|
5941
|
|
|
5942
5943
5944
|
.ant-mention-wrapper .ant-mention-editor:-ms-input-placeholder {
color: #bfbfbf;
}
|
|
5945
|
|
|
5946
5947
5948
|
.ant-mention-wrapper .ant-mention-editor::-webkit-input-placeholder {
color: #bfbfbf;
}
|
|
5949
|
|
|
5950
5951
5952
5953
|
.ant-mention-wrapper .ant-mention-editor:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
5954
|
|
|
5955
5956
5957
5958
5959
|
.ant-mention-wrapper .ant-mention-editor:focus {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
5960
|
|
|
5961
5962
5963
5964
|
.ant-mention-wrapper .ant-mention-editor-disabled {
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
5965
|
|
|
5966
5967
5968
5969
|
.ant-mention-wrapper .ant-mention-editor-disabled:hover {
border-color: #e6d8d8;
border-right-width: 1px !important;
}
|
|
5970
|
|
|
5971
5972
5973
5974
5975
|
.ant-mention-wrapper.ant-mention-active:not(.disabled) .ant-mention-editor {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
5976
|
|
|
5977
5978
5979
5980
|
.ant-mention-wrapper.disabled .ant-mention-editor {
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
5981
|
|
|
5982
5983
5984
5985
|
.ant-mention-wrapper.disabled .ant-mention-editor:hover {
border-color: #e6d8d8;
border-right-width: 1px !important;
}
|
|
5986
|
|
|
5987
5988
5989
|
.ant-mention-wrapper .public-DraftEditorPlaceholder-root .public-DraftEditorPlaceholder-inner {
color: #bfbfbf;
}
|
|
5990
|
|
|
5991
5992
5993
5994
5995
5996
|
.ant-mention-dropdown {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
border-radius: 4px;
}
|
|
5997
|
|
|
5998
5999
6000
|
.ant-mention-dropdown-notfound.ant-mention-dropdown-item {
color: rgba(0, 0, 0, 0.25);
}
|
|
6001
|
|
|
6002
6003
6004
|
.ant-mention-dropdown-notfound.ant-mention-dropdown-item .anticon-loading {
color: @primary-color;
}
|
|
6005
|
|
|
6006
6007
6008
|
.ant-mention-dropdown-item {
color: rgba(0, 0, 0, 0.65);
}
|
|
6009
|
|
|
6010
6011
6012
|
.ant-mention-dropdown-item:hover {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
6013
|
|
|
6014
6015
6016
6017
|
.ant-mention-dropdown-item.focus,
.ant-mention-dropdown-item-active {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
6018
|
|
|
6019
6020
6021
|
.ant-mention-dropdown-item-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
6022
|
|
|
6023
6024
6025
6026
|
.ant-mention-dropdown-item-disabled:hover {
color: rgba(0, 0, 0, 0.25);
background-color: #fff;
}
|
|
6027
|
|
|
6028
6029
6030
6031
6032
|
.ant-mention-dropdown-item-selected,
.ant-mention-dropdown-item-selected:hover {
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.65);
}
|
|
6033
|
|
|
6034
6035
6036
|
.ant-mention-dropdown-item-divider {
background-color: #e8e8e8;
}
|
|
6037
|
|
|
6038
6039
6040
6041
6042
|
.ant-menu {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
color: rgba(0, 0, 0, 0.65);
background: #fff;
}
|
|
6043
|
|
|
6044
6045
6046
|
.ant-menu-item-group-title {
color: rgba(0, 0, 0, 0.45);
}
|
|
6047
|
|
|
6048
6049
6050
6051
|
.ant-menu-item:active,
.ant-menu-submenu-title:active {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
6052
|
|
|
6053
6054
6055
|
.ant-menu-item > a {
color: rgba(0, 0, 0, 0.65);
}
|
|
6056
|
|
|
6057
6058
6059
|
.ant-menu-item > a:hover {
color: @primary-color;
}
|
|
6060
|
|
|
6061
6062
6063
|
.ant-menu-item > a:before {
background-color: transparent;
}
|
|
6064
|
|
|
6065
6066
6067
|
.ant-menu-item-divider {
background-color: #e8e8e8;
}
|
|
6068
|
|
|
6069
6070
6071
6072
6073
6074
6075
|
.ant-menu-item:hover,
.ant-menu-item-active,
.ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
.ant-menu-submenu-active,
.ant-menu-submenu-title:hover {
color: @primary-color;
}
|
|
6076
|
|
|
6077
6078
6079
6080
6081
|
.ant-menu-horizontal > .ant-menu-item:hover,
.ant-menu-horizontal > .ant-menu-item-active,
.ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover {
background-color: transparent;
}
|
|
6082
|
|
|
6083
6084
6085
|
.ant-menu-item-selected {
color: @primary-color;
}
|
|
6086
|
|
|
6087
6088
6089
6090
|
.ant-menu-item-selected > a,
.ant-menu-item-selected > a:hover {
color: @primary-color;
}
|
|
6091
|
|
|
6092
6093
6094
|
.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
6095
|
|
|
6096
6097
6098
6099
6100
|
.ant-menu-inline,
.ant-menu-vertical,
.ant-menu-vertical-left {
border-right: 1px solid #e8e8e8;
}
|
|
6101
|
|
|
6102
6103
6104
|
.ant-menu-vertical-right {
border-left: 1px solid #e8e8e8;
}
|
|
6105
|
|
|
6106
6107
6108
6109
6110
|
.ant-menu-vertical.ant-menu-sub,
.ant-menu-vertical-left.ant-menu-sub,
.ant-menu-vertical-right.ant-menu-sub {
border-right: 0;
}
|
|
6111
|
|
|
6112
6113
6114
6115
6116
|
.ant-menu-vertical.ant-menu-sub .ant-menu-item,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item {
border-right: 0;
}
|
|
6117
|
|
|
6118
6119
6120
6121
6122
|
.ant-menu-vertical.ant-menu-sub .ant-menu-item:after,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item:after,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item:after {
border-right: 0;
}
|
|
6123
|
|
|
6124
6125
6126
|
.ant-menu > .ant-menu-item-divider {
background-color: #e8e8e8;
}
|
|
6127
|
|
|
6128
6129
6130
|
.ant-menu-submenu-popup {
border-radius: 4px;
}
|
|
6131
|
|
|
6132
6133
6134
6135
|
.ant-menu-submenu > .ant-menu {
background-color: #fff;
border-radius: 4px;
}
|
|
6136
|
|
|
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
|
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow:after {
background: #fff;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
border-radius: 2px;
}
|
|
6149
|
|
|
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
|
.ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,
.ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,
.ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before,
.ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before {
background: linear-gradient(to right, @primary-color, @primary-color);
}
|
|
6160
|
|
|
6161
6162
6163
6164
6165
|
.ant-menu-vertical .ant-menu-submenu-selected,
.ant-menu-vertical-left .ant-menu-submenu-selected,
.ant-menu-vertical-right .ant-menu-submenu-selected {
color: @primary-color;
}
|
|
6166
|
|
|
6167
6168
6169
6170
6171
|
.ant-menu-vertical .ant-menu-submenu-selected > a,
.ant-menu-vertical-left .ant-menu-submenu-selected > a,
.ant-menu-vertical-right .ant-menu-submenu-selected > a {
color: @primary-color;
}
|
|
6172
|
|
|
6173
6174
6175
6176
6177
|
.ant-menu-horizontal {
border: 0;
border-bottom: 1px solid #e8e8e8;
box-shadow: none;
}
|
|
6178
|
|
|
6179
6180
6181
6182
|
.ant-menu-horizontal > .ant-menu-item,
.ant-menu-horizontal > .ant-menu-submenu {
border-bottom: 2px solid transparent;
}
|
|
6183
|
|
|
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
|
.ant-menu-horizontal > .ant-menu-item:hover,
.ant-menu-horizontal > .ant-menu-submenu:hover,
.ant-menu-horizontal > .ant-menu-item-active,
.ant-menu-horizontal > .ant-menu-submenu-active,
.ant-menu-horizontal > .ant-menu-item-open,
.ant-menu-horizontal > .ant-menu-submenu-open,
.ant-menu-horizontal > .ant-menu-item-selected,
.ant-menu-horizontal > .ant-menu-submenu-selected {
border-bottom: 2px solid @primary-color;
color: @primary-color;
}
|
|
6195
|
|
|
6196
6197
6198
|
.ant-menu-horizontal > .ant-menu-item > a {
color: rgba(0, 0, 0, 0.65);
}
|
|
6199
|
|
|
6200
6201
6202
|
.ant-menu-horizontal > .ant-menu-item > a:hover {
color: @primary-color;
}
|
|
6203
|
|
|
6204
6205
6206
|
.ant-menu-horizontal > .ant-menu-item-selected > a {
color: @primary-color;
}
|
|
6207
|
|
|
6208
6209
6210
6211
6212
6213
|
.ant-menu-vertical .ant-menu-item:after,
.ant-menu-vertical-left .ant-menu-item:after,
.ant-menu-vertical-right .ant-menu-item:after,
.ant-menu-inline .ant-menu-item:after {
border-right: 3px solid @primary-color;
}
|
|
6214
|
|
|
6215
6216
6217
|
.ant-menu-inline-collapsed-tooltip a {
color: rgba(255, 255, 255, 0.85);
}
|
|
6218
|
|
|
6219
6220
6221
6222
6223
6224
|
.ant-menu-root.ant-menu-vertical,
.ant-menu-root.ant-menu-vertical-left,
.ant-menu-root.ant-menu-vertical-right,
.ant-menu-root.ant-menu-inline {
box-shadow: none;
}
|
|
6225
|
|
|
6226
6227
6228
6229
6230
|
.ant-menu-sub.ant-menu-inline {
border: 0;
box-shadow: none;
border-radius: 0;
}
|
|
6231
|
|
|
6232
6233
6234
6235
6236
6237
|
.ant-menu-item-disabled,
.ant-menu-submenu-disabled {
color: rgba(0, 0, 0, 0.25) !important;
background: none;
border-color: transparent !important;
}
|
|
6238
|
|
|
6239
6240
6241
6242
|
.ant-menu-item-disabled > a,
.ant-menu-submenu-disabled > a {
color: rgba(0, 0, 0, 0.25) !important;
}
|
|
6243
|
|
|
6244
6245
6246
6247
|
.ant-menu-item-disabled > .ant-menu-submenu-title,
.ant-menu-submenu-disabled > .ant-menu-submenu-title {
color: rgba(0, 0, 0, 0.25) !important;
}
|
|
6248
|
|
|
6249
6250
6251
6252
6253
6254
|
.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before,
.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before,
.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after,
.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after {
background: rgba(0, 0, 0, 0.25) !important;
}
|
|
6255
|
|
|
6256
6257
6258
6259
6260
|
.ant-menu-dark,
.ant-menu-dark .ant-menu-sub {
color: rgba(255, 255, 255, 0.65);
background: #001529;
}
|
|
6261
|
|
|
6262
6263
6264
6265
6266
6267
|
.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:before {
background: #fff;
}
|
|
6268
|
|
|
6269
6270
6271
|
.ant-menu-dark.ant-menu-submenu-popup {
background: transparent;
}
|
|
6272
|
|
|
6273
6274
6275
6276
|
.ant-menu-dark .ant-menu-inline.ant-menu-sub {
background: #000c17;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) inset;
}
|
|
6277
|
|
|
6278
6279
6280
|
.ant-menu-dark.ant-menu-horizontal {
border-bottom: 0;
}
|
|
6281
|
|
|
6282
6283
6284
6285
6286
|
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item,
.ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu {
border-color: #001529;
border-bottom: 0;
}
|
|
6287
|
|
|
6288
6289
6290
6291
6292
|
.ant-menu-dark .ant-menu-item,
.ant-menu-dark .ant-menu-item-group-title,
.ant-menu-dark .ant-menu-item > a {
color: rgba(255, 255, 255, 0.65);
}
|
|
6293
|
|
|
6294
6295
6296
6297
6298
6299
|
.ant-menu-dark.ant-menu-inline,
.ant-menu-dark.ant-menu-vertical,
.ant-menu-dark.ant-menu-vertical-left,
.ant-menu-dark.ant-menu-vertical-right {
border-right: 0;
}
|
|
6300
|
|
|
6301
6302
6303
6304
6305
6306
|
.ant-menu-dark.ant-menu-inline .ant-menu-item,
.ant-menu-dark.ant-menu-vertical .ant-menu-item,
.ant-menu-dark.ant-menu-vertical-left .ant-menu-item,
.ant-menu-dark.ant-menu-vertical-right .ant-menu-item {
border-right: 0;
}
|
|
6307
|
|
|
6308
6309
6310
6311
6312
6313
|
.ant-menu-dark.ant-menu-inline .ant-menu-item:after,
.ant-menu-dark.ant-menu-vertical .ant-menu-item:after,
.ant-menu-dark.ant-menu-vertical-left .ant-menu-item:after,
.ant-menu-dark.ant-menu-vertical-right .ant-menu-item:after {
border-right: 0;
}
|
|
6314
|
|
|
6315
6316
6317
6318
6319
6320
6321
6322
6323
|
.ant-menu-dark .ant-menu-item:hover,
.ant-menu-dark .ant-menu-item-active,
.ant-menu-dark .ant-menu-submenu-active,
.ant-menu-dark .ant-menu-submenu-open,
.ant-menu-dark .ant-menu-submenu-selected,
.ant-menu-dark .ant-menu-submenu-title:hover {
background-color: transparent;
color: #fff;
}
|
|
6324
|
|
|
6325
6326
6327
6328
6329
6330
6331
6332
|
.ant-menu-dark .ant-menu-item:hover > a,
.ant-menu-dark .ant-menu-item-active > a,
.ant-menu-dark .ant-menu-submenu-active > a,
.ant-menu-dark .ant-menu-submenu-open > a,
.ant-menu-dark .ant-menu-submenu-selected > a,
.ant-menu-dark .ant-menu-submenu-title:hover > a {
color: #fff;
}
|
|
6333
|
|
|
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
|
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow:before {
background: #fff;
}
|
|
6360
|
|
|
6361
6362
6363
6364
|
.ant-menu-dark .ant-menu-item-selected {
border-right: 0;
color: #fff;
}
|
|
6365
|
|
|
6366
6367
6368
|
.ant-menu-dark .ant-menu-item-selected:after {
border-right: 0;
}
|
|
6369
|
|
|
6370
6371
6372
6373
|
.ant-menu-dark .ant-menu-item-selected > a,
.ant-menu-dark .ant-menu-item-selected > a:hover {
color: #fff;
}
|
|
6374
|
|
|
6375
6376
6377
6378
|
.ant-menu.ant-menu-dark .ant-menu-item-selected,
.ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
background-color: @primary-color;
}
|
|
6379
|
|
|
6380
6381
6382
6383
6384
6385
|
.ant-menu-dark .ant-menu-item-disabled,
.ant-menu-dark .ant-menu-submenu-disabled,
.ant-menu-dark .ant-menu-item-disabled > a,
.ant-menu-dark .ant-menu-submenu-disabled > a {
color: rgba(255, 255, 255, 0.35) !important;
}
|
|
6386
|
|
|
6387
6388
6389
6390
|
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title {
color: rgba(255, 255, 255, 0.35) !important;
}
|
|
6391
|
|
|
6392
6393
6394
6395
6396
6397
|
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow:after {
background: rgba(255, 255, 255, 0.35) !important;
}
|
|
6398
|
|
|
6399
6400
6401
|
.ant-message {
color: rgba(0, 0, 0, 0.65);
}
|
|
6402
|
|
|
6403
6404
6405
6406
6407
|
.ant-message-notice-content {
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
background: #fff;
}
|
|
6408
|
|
|
6409
6410
6411
|
.ant-message-success .anticon {
color: #52c41a;
}
|
|
6412
|
|
|
6413
6414
6415
|
.ant-message-error .anticon {
color: #f5222d;
}
|
|
6416
|
|
|
6417
6418
6419
|
.ant-message-warning .anticon {
color: #faad14;
}
|
|
6420
|
|
|
6421
6422
6423
6424
|
.ant-message-info .anticon,
.ant-message-loading .anticon {
color: @primary-color;
}
|
|
6425
|
|
|
6426
6427
6428
|
.ant-modal {
color: rgba(0, 0, 0, 0.65);
}
|
|
6429
|
|
|
6430
6431
6432
|
.ant-modal-title {
color: rgba(0, 0, 0, 0.85);
}
|
|
6433
|
|
|
6434
6435
6436
6437
6438
6439
6440
|
.ant-modal-content {
background-color: #fff;
border: 0;
border-radius: 4px;
background-clip: padding-box;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
|
|
6441
|
|
|
6442
6443
6444
6445
6446
|
.ant-modal-close {
border: 0;
background: transparent;
color: rgba(0, 0, 0, 0.45);
}
|
|
6447
|
|
|
6448
6449
6450
6451
|
.ant-modal-close:focus,
.ant-modal-close:hover {
color: #444;
}
|
|
6452
|
|
|
6453
6454
6455
6456
6457
6458
|
.ant-modal-header {
border-radius: 4px 4px 0 0;
background: #fff;
color: rgba(0, 0, 0, 0.65);
border-bottom: 1px solid #e8e8e8;
}
|
|
6459
|
|
|
6460
6461
6462
6463
|
.ant-modal-footer {
border-top: 1px solid #e8e8e8;
border-radius: 0 0 4px 4px;
}
|
|
6464
|
|
|
6465
6466
6467
|
.ant-modal-mask {
background-color: rgba(0, 0, 0, 0.65);
}
|
|
6468
|
|
|
6469
6470
6471
|
.ant-confirm-body .ant-confirm-title {
color: rgba(0, 0, 0, 0.85);
}
|
|
6472
|
|
|
6473
6474
6475
|
.ant-confirm-body .ant-confirm-content {
color: rgba(0, 0, 0, 0.65);
}
|
|
6476
|
|
|
6477
6478
6479
|
.ant-confirm-error .ant-confirm-body > .anticon {
color: #f5222d;
}
|
|
6480
|
|
|
6481
6482
6483
6484
|
.ant-confirm-warning .ant-confirm-body > .anticon,
.ant-confirm-confirm .ant-confirm-body > .anticon {
color: #faad14;
}
|
|
6485
|
|
|
6486
6487
6488
|
.ant-confirm-info .ant-confirm-body > .anticon {
color: @primary-color;
}
|
|
6489
|
|
|
6490
6491
6492
|
.ant-confirm-success .ant-confirm-body > .anticon {
color: #52c41a;
}
|
|
6493
|
|
|
6494
6495
6496
|
.ant-notification {
color: rgba(0, 0, 0, 0.65);
}
|
|
6497
|
|
|
6498
6499
6500
6501
6502
|
.ant-notification-notice {
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
background: #fff;
}
|
|
6503
|
|
|
6504
6505
6506
|
.ant-notification-notice-message {
color: rgba(0, 0, 0, 0.85);
}
|
|
6507
|
|
|
6508
6509
6510
|
.ant-notification-notice-message-single-line-auto-margin {
background-color: transparent;
}
|
|
6511
|
|
|
6512
6513
6514
|
.ant-notification-notice-icon-success {
color: #52c41a;
}
|
|
6515
|
|
|
6516
6517
6518
|
.ant-notification-notice-icon-info {
color: @primary-color;
}
|
|
6519
|
|
|
6520
6521
6522
|
.ant-notification-notice-icon-warning {
color: #faad14;
}
|
|
6523
|
|
|
6524
6525
6526
|
.ant-notification-notice-icon-error {
color: #f5222d;
}
|
|
6527
|
|
|
6528
6529
6530
|
.ant-notification-notice-close {
color: rgba(0, 0, 0, 0.45);
}
|
|
6531
|
|
|
6532
6533
6534
|
.ant-notification-notice-close:hover {
color: rgba(0, 0, 0, 0.67);
}
|
|
6535
|
|
|
6536
6537
6538
|
.ant-pagination {
color: rgba(0, 0, 0, 0.65);
}
|
|
6539
|
|
|
6540
6541
6542
6543
6544
|
.ant-pagination-item {
border-radius: 4px;
border: 1px solid #d9d9d9;
background-color: #fff;
}
|
|
6545
|
|
|
6546
6547
6548
|
.ant-pagination-item a {
color: rgba(0, 0, 0, 0.65);
}
|
|
6549
|
|
|
6550
6551
6552
6553
|
.ant-pagination-item:focus,
.ant-pagination-item:hover {
border-color: @primary-color;
}
|
|
6554
|
|
|
6555
6556
6557
6558
|
.ant-pagination-item:focus a,
.ant-pagination-item:hover a {
color: @primary-color;
}
|
|
6559
|
|
|
6560
6561
6562
|
.ant-pagination-item-active {
border-color: @primary-color;
}
|
|
6563
|
|
|
6564
6565
6566
|
.ant-pagination-item-active a {
color: @primary-color;
}
|
|
6567
|
|
|
6568
6569
6570
6571
|
.ant-pagination-item-active:focus,
.ant-pagination-item-active:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
6572
|
|
|
6573
6574
6575
6576
|
.ant-pagination-item-active:focus a,
.ant-pagination-item-active:hover a {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
6577
|
|
|
6578
6579
6580
6581
|
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon {
color: @primary-color;
}
|
|
6582
|
|
|
6583
6584
6585
6586
|
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis {
color: rgba(0, 0, 0, 0.25);
}
|
|
6587
|
|
|
6588
6589
6590
6591
6592
6593
6594
|
.ant-pagination-prev,
.ant-pagination-next,
.ant-pagination-jump-prev,
.ant-pagination-jump-next {
color: rgba(0, 0, 0, 0.65);
border-radius: 4px;
}
|
|
6595
|
|
|
6596
6597
6598
6599
|
.ant-pagination-prev a,
.ant-pagination-next a {
color: rgba(0, 0, 0, 0.65);
}
|
|
6600
|
|
|
6601
6602
6603
6604
|
.ant-pagination-prev:hover a,
.ant-pagination-next:hover a {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
6605
|
|
|
6606
6607
6608
6609
6610
6611
|
.ant-pagination-prev .ant-pagination-item-link,
.ant-pagination-next .ant-pagination-item-link {
border: 1px solid #d9d9d9;
background-color: #fff;
border-radius: 4px;
}
|
|
6612
|
|
|
6613
6614
6615
6616
6617
6618
6619
|
.ant-pagination-prev:focus .ant-pagination-item-link,
.ant-pagination-next:focus .ant-pagination-item-link,
.ant-pagination-prev:hover .ant-pagination-item-link,
.ant-pagination-next:hover .ant-pagination-item-link {
border-color: @primary-color;
color: @primary-color;
}
|
|
6620
|
|
|
6621
6622
6623
6624
6625
6626
6627
6628
6629
|
.ant-pagination-disabled a,
.ant-pagination-disabled:hover a,
.ant-pagination-disabled:focus a,
.ant-pagination-disabled .ant-pagination-item-link,
.ant-pagination-disabled:hover .ant-pagination-item-link,
.ant-pagination-disabled:focus .ant-pagination-item-link {
border-color: #d9d9d9;
color: rgba(0, 0, 0, 0.25);
}
|
|
6630
|
|
|
6631
6632
6633
6634
6635
6636
6637
|
.ant-pagination-options-quick-jumper input {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
background-image: none;
border: 1px solid #d9d9d9;
border-radius: 4px;
}
|
|
6638
|
|
|
6639
6640
6641
|
.ant-pagination-options-quick-jumper input::-moz-placeholder {
color: #bfbfbf;
}
|
|
6642
|
|
|
6643
6644
6645
|
.ant-pagination-options-quick-jumper input:-ms-input-placeholder {
color: #bfbfbf;
}
|
|
6646
|
|
|
6647
6648
6649
|
.ant-pagination-options-quick-jumper input::-webkit-input-placeholder {
color: #bfbfbf;
}
|
|
6650
|
|
|
6651
6652
6653
6654
|
.ant-pagination-options-quick-jumper input:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
6655
|
|
|
6656
6657
6658
6659
6660
|
.ant-pagination-options-quick-jumper input:focus {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
6661
|
|
|
6662
6663
6664
6665
|
.ant-pagination-options-quick-jumper input-disabled {
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
6666
|
|
|
6667
6668
6669
6670
|
.ant-pagination-options-quick-jumper input-disabled:hover {
border-color: #e6d8d8;
border-right-width: 1px !important;
}
|
|
6671
|
|
|
6672
6673
6674
6675
|
.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link,
.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link {
border: 0;
}
|
|
6676
|
|
|
6677
6678
6679
6680
6681
|
.ant-pagination-simple .ant-pagination-simple-pager input {
background-color: #fff;
border-radius: 4px;
border: 1px solid #d9d9d9;
}
|
|
6682
|
|
|
6683
6684
6685
|
.ant-pagination-simple .ant-pagination-simple-pager input:hover {
border-color: @primary-color;
}
|
|
6686
|
|
|
6687
6688
6689
6690
|
.ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active) {
background: transparent;
border-color: transparent;
}
|
|
6691
|
|
|
6692
6693
6694
6695
6696
|
.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link,
.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link {
border-color: transparent;
background: transparent;
}
|
|
6697
|
|
|
6698
6699
6700
|
.ant-popover {
color: rgba(0, 0, 0, 0.65);
}
|
|
6701
|
|
|
6702
6703
6704
|
.ant-popover:after {
background: rgba(255, 255, 255, 0.01);
}
|
|
6705
|
|
|
6706
6707
6708
6709
6710
6711
|
.ant-popover-inner {
background-color: #fff;
background-clip: padding-box;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
|
|
6712
|
|
|
6713
6714
6715
6716
|
.ant-popover-title {
border-bottom: 1px solid #e8e8e8;
color: rgba(0, 0, 0, 0.85);
}
|
|
6717
|
|
|
6718
6719
6720
|
.ant-popover-inner-content {
color: rgba(0, 0, 0, 0.65);
}
|
|
6721
|
|
|
6722
6723
6724
|
.ant-popover-message {
color: rgba(0, 0, 0, 0.65);
}
|
|
6725
|
|
|
6726
6727
6728
|
.ant-popover-message > .anticon {
color: #faad14;
}
|
|
6729
|
|
|
6730
6731
6732
6733
6734
|
.ant-popover-arrow {
background: #fff;
border-color: transparent;
border-style: solid;
}
|
|
6735
|
|
|
6736
6737
6738
6739
6740
|
.ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow {
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
}
|
|
6741
|
|
|
6742
6743
6744
6745
6746
|
.ant-popover-placement-right > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-rightTop > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-rightBottom > .ant-popover-content > .ant-popover-arrow {
box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
}
|
|
6747
|
|
|
6748
6749
6750
6751
6752
|
.ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow {
box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
}
|
|
6753
|
|
|
6754
6755
6756
6757
6758
|
.ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow {
box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
}
|
|
6759
|
|
|
6760
6761
6762
|
.ant-progress {
color: rgba(0, 0, 0, 0.65);
}
|
|
6763
|
|
|
6764
6765
6766
6767
|
.ant-progress-inner {
background-color: #f5f5f5;
border-radius: 100px;
}
|
|
6768
|
|
|
6769
6770
6771
6772
|
.ant-progress-success-bg,
.ant-progress-bg {
background-color: @primary-color;
}
|
|
6773
|
|
|
6774
6775
6776
|
.ant-progress-success-bg {
background-color: #52c41a;
}
|
|
6777
|
|
|
6778
6779
6780
|
.ant-progress-text {
color: rgba(0, 0, 0, 0.45);
}
|
|
6781
|
|
|
6782
6783
6784
6785
|
.ant-progress-status-active .ant-progress-bg:before {
background: #fff;
border-radius: 10px;
}
|
|
6786
|
|
|
6787
6788
6789
|
.ant-progress-status-exception .ant-progress-bg {
background-color: #f5222d;
}
|
|
6790
|
|
|
6791
6792
6793
|
.ant-progress-status-exception .ant-progress-text {
color: #f5222d;
}
|
|
6794
|
|
|
6795
6796
6797
|
.ant-progress-status-success .ant-progress-bg {
background-color: #52c41a;
}
|
|
6798
|
|
|
6799
6800
6801
|
.ant-progress-status-success .ant-progress-text {
color: #52c41a;
}
|
|
6802
|
|
|
6803
6804
6805
|
.ant-progress-circle .ant-progress-inner {
background-color: transparent;
}
|
|
6806
|
|
|
6807
6808
6809
|
.ant-progress-circle .ant-progress-text {
color: rgba(0, 0, 0, 0.65);
}
|
|
6810
|
|
|
6811
6812
6813
|
.ant-progress-circle.ant-progress-status-exception .ant-progress-text {
color: #f5222d;
}
|
|
6814
|
|
|
6815
6816
6817
|
.ant-progress-circle.ant-progress-status-success .ant-progress-text {
color: #52c41a;
}
|
|
6818
|
|
|
6819
6820
6821
|
.ant-radio-group {
color: rgba(0, 0, 0, 0.65);
}
|
|
6822
|
|
|
6823
6824
6825
|
.ant-radio-wrapper {
color: rgba(0, 0, 0, 0.65);
}
|
|
6826
|
|
|
6827
6828
6829
|
.ant-radio {
color: rgba(0, 0, 0, 0.65);
}
|
|
6830
|
|
|
6831
6832
6833
6834
6835
|
.ant-radio-wrapper:hover .ant-radio .ant-radio-inner,
.ant-radio:hover .ant-radio-inner,
.ant-radio-focused .ant-radio-inner {
border-color: @primary-color;
}
|
|
6836
|
|
|
6837
6838
6839
6840
|
.ant-radio-checked:after {
border-radius: 50%;
border: 1px solid @primary-color;
}
|
|
6841
|
|
|
6842
6843
6844
6845
6846
6847
6848
|
.ant-radio-inner {
border-width: 1px;
border-style: solid;
border-radius: 100px;
border-color: #d9d9d9;
background-color: #fff;
}
|
|
6849
|
|
|
6850
6851
6852
6853
6854
6855
|
.ant-radio-inner:after {
border-radius: 8px;
border-top: 0;
border-left: 0;
background-color: @primary-color;
}
|
|
6856
|
|
|
6857
6858
6859
|
.ant-radio-checked .ant-radio-inner {
border-color: @primary-color;
}
|
|
6860
|
|
|
6861
6862
6863
6864
|
.ant-radio-disabled .ant-radio-inner {
border-color: #d9d9d9 !important;
background-color: #f5f5f5;
}
|
|
6865
|
|
|
6866
6867
6868
|
.ant-radio-disabled .ant-radio-inner:after {
background-color: #ccc;
}
|
|
6869
|
|
|
6870
6871
6872
|
.ant-radio-disabled + span {
color: rgba(0, 0, 0, 0.25);
}
|
|
6873
|
|
|
6874
6875
6876
6877
6878
6879
6880
|
.ant-radio-button-wrapper {
color: rgba(0, 0, 0, 0.65);
border: 1px solid #d9d9d9;
border-left: 0;
border-top-width: 1.02px;
background: #fff;
}
|
|
6881
|
|
|
6882
6883
6884
|
.ant-radio-button-wrapper a {
color: rgba(0, 0, 0, 0.65);
}
|
|
6885
|
|
|
6886
6887
6888
|
.ant-radio-button-wrapper:not(:first-child)::before {
background-color: #d9d9d9;
}
|
|
6889
|
|
|
6890
6891
6892
6893
|
.ant-radio-button-wrapper:first-child {
border-radius: 4px 0 0 4px;
border-left: 1px solid #d9d9d9;
}
|
|
6894
|
|
|
6895
6896
6897
|
.ant-radio-button-wrapper:last-child {
border-radius: 0 4px 4px 0;
}
|
|
6898
|
|
|
6899
6900
6901
|
.ant-radio-button-wrapper:first-child:last-child {
border-radius: 4px;
}
|
|
6902
|
|
|
6903
6904
6905
6906
|
.ant-radio-button-wrapper:hover,
.ant-radio-button-wrapper-focused {
color: @primary-color;
}
|
|
6907
|
|
|
6908
6909
6910
6911
6912
6913
|
.ant-radio-button-wrapper-checked {
background: #fff;
border-color: @primary-color;
color: @primary-color;
box-shadow: -1px 0 0 0 @primary-color;
}
|
|
6914
|
|
|
6915
6916
6917
|
.ant-radio-button-wrapper-checked::before {
background-color: @primary-color !important;
}
|
|
6918
|
|
|
6919
6920
6921
6922
|
.ant-radio-button-wrapper-checked:first-child {
border-color: @primary-color;
box-shadow: none !important;
}
|
|
6923
|
|
|
6924
6925
6926
6927
6928
|
.ant-radio-button-wrapper-checked:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: -1px 0 0 0 color(~`colorPalette("@{primary-color}", 5)`);
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
6929
|
|
|
6930
6931
6932
6933
6934
|
.ant-radio-button-wrapper-checked:active {
border-color: color(~`colorPalette("@{primary-color}", 7)`);
box-shadow: -1px 0 0 0 color(~`colorPalette("@{primary-color}", 7)`);
color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
6935
|
|
|
6936
6937
6938
6939
6940
|
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
background: @primary-color;
border-color: @primary-color;
color: #fff;
}
|
|
6941
|
|
|
6942
6943
6944
6945
6946
|
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
background: color(~`colorPalette("@{primary-color}", 5)`);
color: #fff;
}
|
|
6947
|
|
|
6948
6949
6950
6951
6952
|
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
border-color: color(~`colorPalette("@{primary-color}", 7)`);
background: color(~`colorPalette("@{primary-color}", 7)`);
color: #fff;
}
|
|
6953
|
|
|
6954
6955
6956
6957
6958
|
.ant-radio-button-wrapper-disabled {
border-color: #d9d9d9;
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
6959
|
|
|
6960
6961
6962
6963
6964
6965
|
.ant-radio-button-wrapper-disabled:first-child,
.ant-radio-button-wrapper-disabled:hover {
border-color: #d9d9d9;
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
6966
|
|
|
6967
6968
6969
|
.ant-radio-button-wrapper-disabled:first-child {
border-left-color: #d9d9d9;
}
|
|
6970
|
|
|
6971
6972
6973
6974
6975
6976
|
.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
color: #fff;
background-color: #e6e6e6;
border-color: #d9d9d9;
box-shadow: none;
}
|
|
6977
|
|
|
6978
6979
6980
6981
|
.ant-rate {
color: rgba(0, 0, 0, 0.65);
color: #fadb14;
}
|
|
6982
|
|
|
6983
6984
6985
|
.ant-rate-star {
color: inherit;
}
|
|
6986
|
|
|
6987
6988
6989
6990
|
.ant-rate-star-first,
.ant-rate-star-second {
color: #e8e8e8;
}
|
|
6991
|
|
|
6992
6993
6994
6995
|
.ant-rate-star-half .ant-rate-star-first,
.ant-rate-star-full .ant-rate-star-second {
color: inherit;
}
|
|
6996
|
|
|
6997
6998
6999
|
.ant-select {
color: rgba(0, 0, 0, 0.65);
}
|
|
7000
|
|
|
7001
7002
7003
|
.ant-select > ul > li > a {
background-color: #fff;
}
|
|
7004
|
|
|
7005
7006
7007
|
.ant-select-arrow {
color: rgba(0, 0, 0, 0.25);
}
|
|
7008
|
|
|
7009
7010
7011
7012
7013
7014
|
.ant-select-selection {
background-color: #fff;
border-radius: 4px;
border: 1px solid #d9d9d9;
border-top-width: 1.02px;
}
|
|
7015
|
|
|
7016
7017
7018
7019
|
.ant-select-selection:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
7020
|
|
|
7021
7022
7023
7024
7025
7026
7027
|
.ant-select-focused .ant-select-selection,
.ant-select-selection:focus,
.ant-select-selection:active {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
7028
|
|
|
7029
7030
7031
7032
|
.ant-select-selection__clear {
background: #fff;
color: rgba(0, 0, 0, 0.25);
}
|
|
7033
|
|
|
7034
7035
7036
|
.ant-select-selection__clear:hover {
color: rgba(0, 0, 0, 0.45);
}
|
|
7037
|
|
|
7038
7039
7040
|
.ant-select-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
7041
|
|
|
7042
7043
7044
|
.ant-select-disabled .ant-select-selection {
background: #f5f5f5;
}
|
|
7045
|
|
|
7046
7047
7048
7049
7050
7051
|
.ant-select-disabled .ant-select-selection:hover,
.ant-select-disabled .ant-select-selection:focus,
.ant-select-disabled .ant-select-selection:active {
border-color: #d9d9d9;
box-shadow: none;
}
|
|
7052
|
|
|
7053
7054
7055
7056
|
.ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice {
background: #f5f5f5;
color: #aaa;
}
|
|
7057
|
|
|
7058
7059
7060
|
.ant-select-disabled .ant-select-selection__choice__remove {
color: rgba(0, 0, 0, 0.25);
}
|
|
7061
|
|
|
7062
7063
7064
|
.ant-select-disabled .ant-select-selection__choice__remove:hover {
color: rgba(0, 0, 0, 0.25);
}
|
|
7065
|
|
|
7066
7067
7068
7069
|
.ant-select-selection__placeholder,
.ant-select-search__field__placeholder {
color: #bfbfbf;
}
|
|
7070
|
|
|
7071
7072
7073
7074
7075
|
.ant-select-search--inline .ant-select-search__field {
border-width: 0;
background: transparent;
border-radius: 4px;
}
|
|
7076
|
|
|
7077
7078
7079
7080
7081
7082
|
.ant-select-selection--multiple .ant-select-selection__choice {
color: rgba(0, 0, 0, 0.65);
background-color: #fafafa;
border: 1px solid #e8e8e8;
border-radius: 2px;
}
|
|
7083
|
|
|
7084
7085
7086
|
.ant-select-selection--multiple .ant-select-selection__choice__remove {
color: rgba(0, 0, 0, 0.45);
}
|
|
7087
|
|
|
7088
7089
7090
|
.ant-select-selection--multiple .ant-select-selection__choice__remove:hover {
color: #404040;
}
|
|
7091
|
|
|
7092
7093
7094
7095
7096
|
.ant-select-open .ant-select-selection {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
7097
|
|
|
7098
7099
7100
|
.ant-select-combobox .ant-select-search__field {
box-shadow: none;
}
|
|
7101
|
|
|
7102
7103
7104
7105
7106
7107
|
.ant-select-dropdown {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
border-radius: 4px;
}
|
|
7108
|
|
|
7109
7110
7111
|
.ant-select-dropdown-menu-item-group-title {
color: rgba(0, 0, 0, 0.45);
}
|
|
7112
|
|
|
7113
7114
7115
7116
|
.ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:first-child:not(:last-child),
.ant-select-dropdown-menu-item-group:not(:last-child) .ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:last-child {
border-radius: 0;
}
|
|
7117
|
|
|
7118
7119
7120
|
.ant-select-dropdown-menu-item {
color: rgba(0, 0, 0, 0.65);
}
|
|
7121
|
|
|
7122
7123
7124
|
.ant-select-dropdown-menu-item:hover {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
7125
|
|
|
7126
7127
7128
|
.ant-select-dropdown-menu-item:first-child {
border-radius: 4px 4px 0 0;
}
|
|
7129
|
|
|
7130
7131
7132
|
.ant-select-dropdown-menu-item:last-child {
border-radius: 0 0 4px 4px;
}
|
|
7133
|
|
|
7134
7135
7136
|
.ant-select-dropdown-menu-item-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
7137
|
|
|
7138
7139
7140
7141
|
.ant-select-dropdown-menu-item-disabled:hover {
color: rgba(0, 0, 0, 0.25);
background-color: #fff;
}
|
|
7142
|
|
|
7143
7144
7145
7146
7147
|
.ant-select-dropdown-menu-item-selected,
.ant-select-dropdown-menu-item-selected:hover {
background-color: #fafafa;
color: rgba(0, 0, 0, 0.65);
}
|
|
7148
|
|
|
7149
7150
7151
|
.ant-select-dropdown-menu-item-active {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
7152
|
|
|
7153
7154
7155
|
.ant-select-dropdown-menu-item-divider {
background-color: #e8e8e8;
}
|
|
7156
|
|
|
7157
7158
7159
|
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item .ant-select-selected-icon {
color: transparent;
}
|
|
7160
|
|
|
7161
7162
7163
|
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:hover .ant-select-selected-icon {
color: #ddd;
}
|
|
7164
|
|
|
7165
7166
7167
7168
|
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected .ant-select-selected-icon,
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover .ant-select-selected-icon {
color: @primary-color;
}
|
|
7169
|
|
|
7170
7171
7172
|
.ant-skeleton-header .ant-skeleton-avatar {
background: #f2f2f2;
}
|
|
7173
|
|
|
7174
7175
7176
|
.ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle {
border-radius: 50%;
}
|
|
7177
|
|
|
7178
7179
7180
|
.ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {
border-radius: 50%;
}
|
|
7181
|
|
|
7182
7183
7184
|
.ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {
border-radius: 50%;
}
|
|
7185
|
|
|
7186
7187
7188
|
.ant-skeleton-content .ant-skeleton-title {
background: #f2f2f2;
}
|
|
7189
|
|
|
7190
7191
7192
|
.ant-skeleton-content .ant-skeleton-paragraph > li {
background: #f2f2f2;
}
|
|
7193
|
|
|
7194
7195
7196
7197
7198
|
.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title,
.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li {
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
background-size: 400% 100%;
}
|
|
7199
|
|
|
7200
7201
7202
7203
|
.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar {
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
background-size: 400% 100%;
}
|
|
7204
|
|
|
7205
7206
7207
|
.ant-slider {
color: rgba(0, 0, 0, 0.65);
}
|
|
7208
|
|
|
7209
7210
7211
7212
|
.ant-slider-rail {
border-radius: 2px;
background-color: #f5f5f5;
}
|
|
7213
|
|
|
7214
7215
7216
7217
|
.ant-slider-track {
border-radius: 4px;
background-color: color(~`colorPalette("@{primary-color}", 3)`);
}
|
|
7218
|
|
|
7219
7220
7221
7222
7223
|
.ant-slider-handle {
border-radius: 50%;
border: solid 2px color(~`colorPalette("@{primary-color}", 3)`);
background-color: #fff;
}
|
|
7224
|
|
|
7225
7226
7227
7228
|
.ant-slider-handle:focus {
border-color: #46a6ff;
box-shadow: 0 0 0 5px #8cc8ff;
}
|
|
7229
|
|
|
7230
7231
7232
|
.ant-slider-handle.ant-tooltip-open {
border-color: @primary-color;
}
|
|
7233
|
|
|
7234
7235
7236
|
.ant-slider:hover .ant-slider-rail {
background-color: #e1e1e1;
}
|
|
7237
|
|
|
7238
7239
7240
|
.ant-slider:hover .ant-slider-track {
background-color: color(~`colorPalette("@{primary-color}", 4)`);
}
|
|
7241
|
|
|
7242
7243
7244
|
.ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) {
border-color: color(~`colorPalette("@{primary-color}", 4)`);
}
|
|
7245
|
|
|
7246
7247
7248
|
.ant-slider-mark-text {
color: rgba(0, 0, 0, 0.45);
}
|
|
7249
|
|
|
7250
7251
7252
|
.ant-slider-mark-text-active {
color: rgba(0, 0, 0, 0.65);
}
|
|
7253
|
|
|
7254
7255
7256
|
.ant-slider-step {
background: transparent;
}
|
|
7257
|
|
|
7258
7259
7260
7261
7262
|
.ant-slider-dot {
border: 2px solid #e8e8e8;
background-color: #fff;
border-radius: 50%;
}
|
|
7263
|
|
|
7264
7265
7266
|
.ant-slider-dot-active {
border-color: #8cc8ff;
}
|
|
7267
|
|
|
7268
7269
7270
|
.ant-slider-disabled .ant-slider-track {
background-color: rgba(0, 0, 0, 0.25) !important;
}
|
|
7271
|
|
|
7272
7273
7274
7275
7276
7277
|
.ant-slider-disabled .ant-slider-handle,
.ant-slider-disabled .ant-slider-dot {
border-color: rgba(0, 0, 0, 0.25) !important;
background-color: #fff;
box-shadow: none;
}
|
|
7278
|
|
|
7279
7280
7281
7282
|
.ant-spin {
color: rgba(0, 0, 0, 0.65);
color: @primary-color;
}
|
|
7283
|
|
|
7284
7285
7286
|
.ant-spin-blur:after {
background: #fff;
}
|
|
7287
|
|
|
7288
7289
7290
|
.ant-spin-tip {
color: rgba(0, 0, 0, 0.45);
}
|
|
7291
|
|
|
7292
7293
7294
7295
|
.ant-spin-dot i {
border-radius: 100%;
background-color: @primary-color;
}
|
|
7296
|
|
|
7297
7298
7299
|
.ant-steps {
color: rgba(0, 0, 0, 0.65);
}
|
|
7300
|
|
|
7301
7302
7303
7304
|
.ant-steps-item-icon {
border: 1px solid rgba(0, 0, 0, 0.25);
border-radius: 32px;
}
|
|
7305
|
|
|
7306
7307
7308
|
.ant-steps-item-icon > .ant-steps-icon {
color: @primary-color;
}
|
|
7309
|
|
|
7310
7311
7312
7313
|
.ant-steps-item-tail:after {
background: #e8e8e8;
border-radius: 1px;
}
|
|
7314
|
|
|
7315
7316
7317
|
.ant-steps-item-title {
color: rgba(0, 0, 0, 0.65);
}
|
|
7318
|
|
|
7319
7320
7321
|
.ant-steps-item-title:after {
background: #e8e8e8;
}
|
|
7322
|
|
|
7323
7324
7325
|
.ant-steps-item-description {
color: rgba(0, 0, 0, 0.45);
}
|
|
7326
|
|
|
7327
7328
7329
7330
|
.ant-steps-item-wait .ant-steps-item-icon {
border-color: rgba(0, 0, 0, 0.25);
background-color: #fff;
}
|
|
7331
|
|
|
7332
7333
7334
|
.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon {
color: rgba(0, 0, 0, 0.25);
}
|
|
7335
|
|
|
7336
7337
7338
|
.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
background: rgba(0, 0, 0, 0.25);
}
|
|
7339
|
|
|
7340
7341
7342
|
.ant-steps-item-wait > .ant-steps-item-content > .ant-steps-item-title {
color: rgba(0, 0, 0, 0.45);
}
|
|
7343
|
|
|
7344
7345
7346
|
.ant-steps-item-wait > .ant-steps-item-content > .ant-steps-item-title:after {
background-color: #e8e8e8;
}
|
|
7347
|
|
|
7348
7349
7350
|
.ant-steps-item-wait > .ant-steps-item-content > .ant-steps-item-description {
color: rgba(0, 0, 0, 0.45);
}
|
|
7351
|
|
|
7352
7353
7354
|
.ant-steps-item-wait > .ant-steps-item-tail:after {
background-color: #e8e8e8;
}
|
|
7355
|
|
|
7356
7357
7358
7359
|
.ant-steps-item-process .ant-steps-item-icon {
border-color: @primary-color;
background-color: #fff;
}
|
|
7360
|
|
|
7361
7362
7363
|
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
color: @primary-color;
}
|
|
7364
|
|
|
7365
7366
7367
|
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
background: @primary-color;
}
|
|
7368
|
|
|
7369
7370
7371
|
.ant-steps-item-process > .ant-steps-item-content > .ant-steps-item-title {
color: rgba(0, 0, 0, 0.85);
}
|
|
7372
|
|
|
7373
7374
7375
|
.ant-steps-item-process > .ant-steps-item-content > .ant-steps-item-title:after {
background-color: #e8e8e8;
}
|
|
7376
|
|
|
7377
7378
7379
|
.ant-steps-item-process > .ant-steps-item-content > .ant-steps-item-description {
color: rgba(0, 0, 0, 0.65);
}
|
|
7380
|
|
|
7381
7382
7383
|
.ant-steps-item-process > .ant-steps-item-tail:after {
background-color: #e8e8e8;
}
|
|
7384
|
|
|
7385
7386
7387
|
.ant-steps-item-process .ant-steps-item-icon {
background: @primary-color;
}
|
|
7388
|
|
|
7389
7390
7391
|
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
color: #fff;
}
|
|
7392
|
|
|
7393
7394
7395
7396
|
.ant-steps-item-finish .ant-steps-item-icon {
border-color: @primary-color;
background-color: #fff;
}
|
|
7397
|
|
|
7398
7399
7400
|
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon {
color: @primary-color;
}
|
|
7401
|
|
|
7402
7403
7404
|
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
background: @primary-color;
}
|
|
7405
|
|
|
7406
7407
7408
|
.ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-title {
color: rgba(0, 0, 0, 0.65);
}
|
|
7409
|
|
|
7410
7411
7412
|
.ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-title:after {
background-color: @primary-color;
}
|
|
7413
|
|
|
7414
7415
7416
|
.ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-description {
color: rgba(0, 0, 0, 0.45);
}
|
|
7417
|
|
|
7418
7419
7420
|
.ant-steps-item-finish > .ant-steps-item-tail:after {
background-color: @primary-color;
}
|
|
7421
|
|
|
7422
7423
7424
7425
|
.ant-steps-item-error .ant-steps-item-icon {
border-color: #f5222d;
background-color: #fff;
}
|
|
7426
|
|
|
7427
7428
7429
|
.ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon {
color: #f5222d;
}
|
|
7430
|
|
|
7431
7432
7433
|
.ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
background: #f5222d;
}
|
|
7434
|
|
|
7435
7436
7437
|
.ant-steps-item-error > .ant-steps-item-content > .ant-steps-item-title {
color: #f5222d;
}
|
|
7438
|
|
|
7439
7440
7441
|
.ant-steps-item-error > .ant-steps-item-content > .ant-steps-item-title:after {
background-color: #e8e8e8;
}
|
|
7442
|
|
|
7443
7444
7445
|
.ant-steps-item-error > .ant-steps-item-content > .ant-steps-item-description {
color: #f5222d;
}
|
|
7446
|
|
|
7447
7448
7449
|
.ant-steps-item-error > .ant-steps-item-tail:after {
background-color: #e8e8e8;
}
|
|
7450
|
|
|
7451
7452
7453
|
.ant-steps-item.ant-steps-next-error .ant-steps-item-title:after {
background: #f5222d;
}
|
|
7454
|
|
|
7455
7456
7457
7458
|
.ant-steps-item-custom .ant-steps-item-icon {
background: none;
border: 0;
}
|
|
7459
|
|
|
7460
7461
7462
|
.ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
color: @primary-color;
}
|
|
7463
|
|
|
7464
7465
7466
|
.ant-steps-small .ant-steps-item-icon {
border-radius: 24px;
}
|
|
7467
|
|
|
7468
7469
7470
|
.ant-steps-small .ant-steps-item-description {
color: rgba(0, 0, 0, 0.45);
}
|
|
7471
|
|
|
7472
7473
7474
7475
7476
|
.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon {
border-radius: 0;
border: 0;
background: none;
}
|
|
7477
|
|
|
7478
7479
7480
7481
|
.ant-steps-dot .ant-steps-item-icon {
border: 0;
background: transparent;
}
|
|
7482
|
|
|
7483
7484
7485
|
.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot {
border-radius: 100px;
}
|
|
7486
|
|
|
7487
7488
7489
|
.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot:after {
background: rgba(0, 0, 0, 0.001);
}
|
|
7490
|
|
|
7491
7492
7493
7494
7495
7496
|
.ant-switch {
color: rgba(0, 0, 0, 0.65);
border-radius: 100px;
border: 1px solid transparent;
background-color: rgba(0, 0, 0, 0.25);
}
|
|
7497
|
|
|
7498
7499
7500
|
.ant-switch-inner {
color: #fff;
}
|
|
7501
|
|
|
7502
7503
7504
7505
7506
|
.ant-switch-loading-icon,
.ant-switch:after {
border-radius: 18px;
background-color: #fff;
}
|
|
7507
|
|
|
7508
7509
7510
|
.ant-switch:after {
box-shadow: 0 2px 4px 0 rgba(0, 35, 11, 0.2);
}
|
|
7511
|
|
|
7512
7513
7514
|
.ant-switch-loading-icon {
background: transparent;
}
|
|
7515
|
|
|
7516
7517
7518
|
.ant-switch-loading .ant-switch-loading-icon {
color: rgba(0, 0, 0, 0.65);
}
|
|
7519
|
|
|
7520
7521
7522
|
.ant-switch-checked.ant-switch-loading .ant-switch-loading-icon {
color: @primary-color;
}
|
|
7523
|
|
|
7524
7525
7526
|
.ant-switch:focus {
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
|
|
7527
|
|
|
7528
7529
7530
|
.ant-switch:focus:hover {
box-shadow: none;
}
|
|
7531
|
|
|
7532
7533
7534
|
.ant-switch-checked {
background-color: @primary-color;
}
|
|
7535
|
|
|
7536
7537
7538
|
.ant-table {
color: rgba(0, 0, 0, 0.65);
}
|
|
7539
|
|
|
7540
7541
7542
7543
|
.ant-table table {
border-collapse: collapse;
border-radius: 4px 4px 0 0;
}
|
|
7544
|
|
|
7545
7546
7547
7548
7549
|
.ant-table-thead > tr > th {
background: #fafafa;
color: rgba(0, 0, 0, 0.85);
border-bottom: 1px solid #e8e8e8;
}
|
|
7550
|
|
|
7551
7552
7553
7554
|
.ant-table-thead > tr > th .anticon-filter,
.ant-table-thead > tr > th .ant-table-filter-icon {
color: #bfbfbf;
}
|
|
7555
|
|
|
7556
7557
7558
|
.ant-table-thead > tr > th .ant-table-filter-selected.anticon-filter {
color: @primary-color;
}
|
|
7559
|
|
|
7560
7561
7562
|
.ant-table-thead > tr > th .ant-table-column-sorter {
color: #bfbfbf;
}
|
|
7563
|
|
|
7564
7565
7566
7567
|
.ant-table-thead > tr > th .ant-table-column-sorter-up.on,
.ant-table-thead > tr > th .ant-table-column-sorter-down.on {
color: @primary-color;
}
|
|
7568
|
|
|
7569
7570
7571
|
.ant-table-thead > tr > th.ant-table-column-has-actions:hover {
background: #f5f5f5;
}
|
|
7572
|
|
|
7573
7574
7575
7576
|
.ant-table-thead > tr > th.ant-table-column-has-actions:hover .anticon-filter,
.ant-table-thead > tr > th.ant-table-column-has-actions:hover .ant-table-filter-icon {
background: #f5f5f5;
}
|
|
7577
|
|
|
7578
7579
7580
7581
7582
|
.ant-table-thead > tr > th.ant-table-column-has-actions:hover .anticon-filter:hover,
.ant-table-thead > tr > th.ant-table-column-has-actions:hover .ant-table-filter-icon:hover {
color: rgba(0, 0, 0, 0.45);
background: #ebebeb;
}
|
|
7583
|
|
|
7584
7585
7586
7587
|
.ant-table-thead > tr > th.ant-table-column-has-actions:hover .anticon-filter:active,
.ant-table-thead > tr > th.ant-table-column-has-actions:hover .ant-table-filter-icon:active {
color: rgba(0, 0, 0, 0.65);
}
|
|
7588
|
|
|
7589
7590
7591
7592
7593
|
.ant-table-thead > tr > th.ant-table-column-has-actions .anticon-filter.ant-table-filter-open,
.ant-table-thead > tr > th.ant-table-column-has-actions .ant-table-filter-icon.ant-table-filter-open {
color: rgba(0, 0, 0, 0.45);
background: #ebebeb;
}
|
|
7594
|
|
|
7595
7596
7597
7598
|
.ant-table-thead > tr > th.ant-table-column-has-actions:active .ant-table-column-sorter-up:not(.on),
.ant-table-thead > tr > th.ant-table-column-has-actions:active .ant-table-column-sorter-down:not(.on) {
color: rgba(0, 0, 0, 0.45);
}
|
|
7599
|
|
|
7600
7601
7602
|
.ant-table-thead > tr > th .ant-table-column-sorters:before {
background: transparent;
}
|
|
7603
|
|
|
7604
7605
7606
|
.ant-table-thead > tr > th .ant-table-column-sorters:hover:before {
background: rgba(0, 0, 0, 0.04);
}
|
|
7607
|
|
|
7608
7609
7610
|
.ant-table-thead > tr:first-child > th:first-child {
border-top-left-radius: 4px;
}
|
|
7611
|
|
|
7612
7613
7614
|
.ant-table-thead > tr:first-child > th:last-child {
border-top-right-radius: 4px;
}
|
|
7615
|
|
|
7616
7617
7618
|
.ant-table-thead > tr:not(:last-child) > th[colspan] {
border-bottom: 0;
}
|
|
7619
|
|
|
7620
7621
7622
|
.ant-table-tbody > tr > td {
border-bottom: 1px solid #e8e8e8;
}
|
|
7623
|
|
|
7624
7625
7626
7627
7628
7629
|
.ant-table-thead > tr.ant-table-row-hover > td,
.ant-table-tbody > tr.ant-table-row-hover > td,
.ant-table-thead > tr:hover > td,
.ant-table-tbody > tr:hover > td {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
7630
|
|
|
7631
7632
7633
|
.ant-table-thead > tr:hover {
background: none;
}
|
|
7634
|
|
|
7635
7636
7637
7638
7639
|
.ant-table-footer {
background: #fafafa;
border-radius: 0 0 4px 4px;
border-top: 1px solid #e8e8e8;
}
|
|
7640
|
|
|
7641
7642
7643
|
.ant-table-footer:before {
background: #fafafa;
}
|
|
7644
|
|
|
7645
7646
7647
|
.ant-table.ant-table-bordered .ant-table-footer {
border: 1px solid #e8e8e8;
}
|
|
7648
|
|
|
7649
7650
7651
|
.ant-table-title {
border-radius: 4px 4px 0 0;
}
|
|
7652
|
|
|
7653
7654
7655
|
.ant-table.ant-table-bordered .ant-table-title {
border: 1px solid #e8e8e8;
}
|
|
7656
|
|
|
7657
7658
7659
|
.ant-table-title + .ant-table-content {
border-radius: 4px 4px 0 0;
}
|
|
7660
|
|
|
7661
7662
7663
7664
7665
|
.ant-table-bordered .ant-table-title + .ant-table-content,
.ant-table-bordered .ant-table-title + .ant-table-content table,
.ant-table-bordered .ant-table-title + .ant-table-content .ant-table-thead > tr:first-child > th {
border-radius: 0;
}
|
|
7666
|
|
|
7667
7668
7669
7670
|
.ant-table-without-column-header .ant-table-title + .ant-table-content,
.ant-table-without-column-header table {
border-radius: 0;
}
|
|
7671
|
|
|
7672
7673
7674
|
.ant-table-tbody > tr.ant-table-row-selected td {
background: #fafafa;
}
|
|
7675
|
|
|
7676
7677
7678
|
.ant-table-thead > tr > th.ant-table-column-sort {
background: #f5f5f5;
}
|
|
7679
|
|
|
7680
7681
7682
|
.ant-table-tbody > tr > td.ant-table-column-sort {
background: rgba(0, 0, 0, 0.01);
}
|
|
7683
|
|
|
7684
7685
7686
|
.ant-table-header {
background: #fafafa;
}
|
|
7687
|
|
|
7688
7689
7690
|
.ant-table-header table {
border-radius: 4px 4px 0 0;
}
|
|
7691
|
|
|
7692
7693
7694
|
.ant-table-loading .ant-table-body {
background: #fff;
}
|
|
7695
|
|
|
7696
7697
7698
7699
7700
7701
7702
7703
|
.ant-table-bordered .ant-table-header > table,
.ant-table-bordered .ant-table-body > table,
.ant-table-bordered .ant-table-fixed-left table,
.ant-table-bordered .ant-table-fixed-right table {
border: 1px solid #e8e8e8;
border-right: 0;
border-bottom: 0;
}
|
|
7704
|
|
|
7705
7706
7707
7708
|
.ant-table-bordered.ant-table-empty .ant-table-placeholder {
border-left: 1px solid #e8e8e8;
border-right: 1px solid #e8e8e8;
}
|
|
7709
|
|
|
7710
7711
7712
|
.ant-table-bordered.ant-table-fixed-header .ant-table-header > table {
border-bottom: 0;
}
|
|
7713
|
|
|
7714
7715
7716
7717
7718
|
.ant-table-bordered.ant-table-fixed-header .ant-table-body > table {
border-top: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
|
|
7719
|
|
|
7720
7721
7722
|
.ant-table-bordered.ant-table-fixed-header .ant-table-body-inner > table {
border-top: 0;
}
|
|
7723
|
|
|
7724
7725
7726
|
.ant-table-bordered.ant-table-fixed-header .ant-table-placeholder {
border: 0;
}
|
|
7727
|
|
|
7728
7729
7730
|
.ant-table-bordered .ant-table-thead > tr:not(:last-child) > th {
border-bottom: 1px solid #e8e8e8;
}
|
|
7731
|
|
|
7732
7733
7734
7735
|
.ant-table-bordered .ant-table-thead > tr > th,
.ant-table-bordered .ant-table-tbody > tr > td {
border-right: 1px solid #e8e8e8;
}
|
|
7736
|
|
|
7737
7738
7739
7740
7741
|
.ant-table-placeholder {
background: #fff;
border-bottom: 1px solid #e8e8e8;
color: rgba(0, 0, 0, 0.45);
}
|
|
7742
|
|
|
7743
7744
7745
7746
7747
|
.ant-table-filter-dropdown {
background: #fff;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
|
|
7748
|
|
|
7749
7750
7751
7752
7753
|
.ant-table-filter-dropdown .ant-dropdown-menu {
border: 0;
box-shadow: none;
border-radius: 4px 4px 0 0;
}
|
|
7754
|
|
|
7755
7756
7757
7758
|
.ant-table-filter-dropdown .ant-dropdown-menu-sub {
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
|
|
7759
|
|
|
7760
7761
7762
|
.ant-table-filter-dropdown .ant-dropdown-menu .ant-dropdown-submenu-contain-selected .ant-dropdown-menu-submenu-title:after {
color: @primary-color;
}
|
|
7763
|
|
|
7764
7765
7766
7767
|
.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-item:last-child,
.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title {
border-radius: 0;
}
|
|
7768
|
|
|
7769
7770
7771
|
.ant-table-filter-dropdown-btns {
border-top: 1px solid #e8e8e8;
}
|
|
7772
|
|
|
7773
7774
7775
|
.ant-table-filter-dropdown-link {
color: @primary-color;
}
|
|
7776
|
|
|
7777
7778
7779
|
.ant-table-filter-dropdown-link:hover {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
7780
|
|
|
7781
7782
7783
|
.ant-table-filter-dropdown-link:active {
color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
7784
|
|
|
7785
7786
7787
|
.ant-table-selection .anticon-down {
color: #bfbfbf;
}
|
|
7788
|
|
|
7789
7790
7791
7792
7793
|
.ant-table-selection-menu {
background: #fff;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
|
|
7794
|
|
|
7795
7796
7797
|
.ant-table-selection-menu .ant-action-down {
color: #bfbfbf;
}
|
|
7798
|
|
|
7799
7800
7801
|
.ant-table-selection-down:hover .anticon-down {
color: #666;
}
|
|
7802
|
|
|
7803
7804
7805
7806
|
.ant-table-row-expand-icon {
border: 1px solid #e8e8e8;
background: #fff;
}
|
|
7807
|
|
|
7808
7809
7810
7811
|
tr.ant-table-expanded-row,
tr.ant-table-expanded-row:hover {
background: #fbfbfb;
}
|
|
7812
|
|
|
7813
7814
7815
|
.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
background: #fff;
}
|
|
7816
|
|
|
7817
7818
7819
7820
|
.ant-table-fixed-left,
.ant-table-fixed-right {
border-radius: 0;
}
|
|
7821
|
|
|
7822
7823
7824
7825
|
.ant-table-fixed-left table,
.ant-table-fixed-right table {
background: #fff;
}
|
|
7826
|
|
|
7827
7828
7829
7830
|
.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-outer .ant-table-fixed,
.ant-table-fixed-header .ant-table-fixed-right .ant-table-body-outer .ant-table-fixed {
border-radius: 0;
}
|
|
7831
|
|
|
7832
7833
7834
|
.ant-table-fixed-left {
box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);
}
|
|
7835
|
|
|
7836
7837
7838
7839
|
.ant-table-fixed-left,
.ant-table-fixed-left table {
border-radius: 4px 0 0 0;
}
|
|
7840
|
|
|
7841
7842
7843
|
.ant-table-fixed-left .ant-table-thead > tr > th:last-child {
border-top-right-radius: 0;
}
|
|
7844
|
|
|
7845
7846
7847
|
.ant-table-fixed-right {
box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);
}
|
|
7848
|
|
|
7849
7850
7851
7852
|
.ant-table-fixed-right,
.ant-table-fixed-right table {
border-radius: 0 4px 0 0;
}
|
|
7853
|
|
|
7854
7855
7856
|
.ant-table-fixed-right .ant-table-expanded-row {
color: transparent;
}
|
|
7857
|
|
|
7858
7859
7860
|
.ant-table-fixed-right .ant-table-thead > tr > th:first-child {
border-top-left-radius: 0;
}
|
|
7861
|
|
|
7862
7863
7864
|
.ant-table.ant-table-scroll-position-left .ant-table-fixed-left {
box-shadow: none;
}
|
|
7865
|
|
|
7866
7867
7868
|
.ant-table.ant-table-scroll-position-right .ant-table-fixed-right {
box-shadow: none;
}
|
|
7869
|
|
|
7870
7871
7872
7873
|
.ant-table-small {
border: 1px solid #e8e8e8;
border-radius: 4px;
}
|
|
7874
|
|
|
7875
7876
7877
|
.ant-table-small > .ant-table-title {
border-bottom: 1px solid #e8e8e8;
}
|
|
7878
|
|
|
7879
7880
7881
7882
7883
7884
7885
7886
7887
7888
|
.ant-table-small > .ant-table-content > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-body > table,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table {
border: 0;
}
|
|
7889
|
|
|
7890
7891
7892
7893
7894
7895
7896
7897
7898
7899
7900
|
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
background: #fff;
border-bottom: 1px solid #e8e8e8;
}
|
|
7901
|
|
|
7902
7903
7904
|
.ant-table-small > .ant-table-content .ant-table-header {
background: #fff;
}
|
|
7905
|
|
|
7906
7907
7908
7909
|
.ant-table-small > .ant-table-content .ant-table-placeholder,
.ant-table-small > .ant-table-content .ant-table-row:last-child td {
border-bottom: 0;
}
|
|
7910
|
|
|
7911
7912
7913
|
.ant-table-small.ant-table-bordered {
border-right: 0;
}
|
|
7914
|
|
|
7915
7916
7917
7918
7919
|
.ant-table-small.ant-table-bordered .ant-table-title {
border: 0;
border-bottom: 1px solid #e8e8e8;
border-right: 1px solid #e8e8e8;
}
|
|
7920
|
|
|
7921
7922
7923
|
.ant-table-small.ant-table-bordered .ant-table-content {
border-right: 1px solid #e8e8e8;
}
|
|
7924
|
|
|
7925
7926
7927
7928
7929
|
.ant-table-small.ant-table-bordered .ant-table-footer {
border: 0;
border-top: 1px solid #e8e8e8;
border-right: 1px solid #e8e8e8;
}
|
|
7930
|
|
|
7931
7932
7933
7934
|
.ant-table-small.ant-table-bordered .ant-table-placeholder {
border-left: 0;
border-bottom: 0;
}
|
|
7935
|
|
|
7936
7937
7938
7939
|
.ant-table-small.ant-table-bordered .ant-table-thead > tr > th:last-child,
.ant-table-small.ant-table-bordered .ant-table-tbody > tr > td:last-child {
border-right: none;
}
|
|
7940
|
|
|
7941
7942
7943
7944
|
.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-thead > tr > th:last-child,
.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-tbody > tr > td:last-child {
border-right: 1px solid #e8e8e8;
}
|
|
7945
|
|
|
7946
7947
7948
|
.ant-table-small.ant-table-bordered .ant-table-fixed-right {
border-right: 1px solid #e8e8e8;
}
|
|
7949
|
|
|
7950
7951
7952
7953
7954
7955
|
.ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
border: 1px solid #e8e8e8;
border-bottom: 0;
border-radius: 4px 4px 0 0;
background: #fafafa;
}
|
|
7956
|
|
|
7957
7958
7959
7960
7961
|
.ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active {
background: #fff;
border-color: @primary-color !important;
color: @primary-color;
}
|
|
7962
|
|
|
7963
7964
7965
|
.ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .ant-tabs-close-x {
color: rgba(0, 0, 0, 0.45);
}
|
|
7966
|
|
|
7967
7968
7969
|
.ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab .ant-tabs-close-x:hover {
color: rgba(0, 0, 0, 0.85);
}
|
|
7970
|
|
|
7971
7972
7973
7974
7975
|
.ant-tabs-extra-content .ant-tabs-new-tab {
border-radius: 2px;
border: 1px solid #e8e8e8;
color: rgba(0, 0, 0, 0.65);
}
|
|
7976
|
|
|
7977
7978
7979
7980
|
.ant-tabs-extra-content .ant-tabs-new-tab:hover {
color: @primary-color;
border-color: @primary-color;
}
|
|
7981
|
|
|
7982
7983
7984
|
.ant-tabs-vertical.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
border-bottom: 1px solid #e8e8e8;
}
|
|
7985
|
|
|
7986
7987
7988
7989
|
.ant-tabs-vertical.ant-tabs-card.ant-tabs-left > .ant-tabs-bar .ant-tabs-tab {
border-right: 0;
border-radius: 4px 0 0 4px;
}
|
|
7990
|
|
|
7991
7992
7993
7994
|
.ant-tabs-vertical.ant-tabs-card.ant-tabs-right > .ant-tabs-bar .ant-tabs-tab {
border-left: 0;
border-radius: 0 4px 4px 0;
}
|
|
7995
|
|
|
7996
7997
7998
7999
8000
|
.ant-tabs.ant-tabs-card.ant-tabs-bottom > .ant-tabs-bar .ant-tabs-tab {
border-bottom: 1px solid #e8e8e8;
border-top: 0;
border-radius: 0 0 4px 4px;
}
|
|
8001
|
|
|
8002
8003
8004
|
.ant-tabs.ant-tabs-card.ant-tabs-bottom > .ant-tabs-bar .ant-tabs-tab-active {
color: @primary-color;
}
|
|
8005
|
|
|
8006
8007
8008
|
.ant-tabs {
color: rgba(0, 0, 0, 0.65);
}
|
|
8009
|
|
|
8010
8011
8012
|
.ant-tabs-ink-bar {
background-color: @primary-color;
}
|
|
8013
|
|
|
8014
8015
8016
|
.ant-tabs-bar {
border-bottom: 1px solid #e8e8e8;
}
|
|
8017
|
|
|
8018
8019
8020
8021
|
.ant-tabs-bottom .ant-tabs-bar {
border-bottom: none;
border-top: 1px solid #e8e8e8;
}
|
|
8022
|
|
|
8023
8024
8025
8026
8027
8028
|
.ant-tabs-tab-prev,
.ant-tabs-tab-next {
border: 0;
background-color: transparent;
color: rgba(0, 0, 0, 0.45);
}
|
|
8029
|
|
|
8030
8031
8032
8033
|
.ant-tabs-tab-prev:hover,
.ant-tabs-tab-next:hover {
color: rgba(0, 0, 0, 0.65);
}
|
|
8034
|
|
|
8035
8036
8037
8038
|
.ant-tabs-tab-btn-disabled,
.ant-tabs-tab-btn-disabled:hover {
color: rgba(0, 0, 0, 0.25);
}
|
|
8039
|
|
|
8040
8041
8042
|
.ant-tabs-nav .ant-tabs-tab-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
8043
|
|
|
8044
8045
8046
|
.ant-tabs-nav .ant-tabs-tab:hover {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
8047
|
|
|
8048
8049
8050
|
.ant-tabs-nav .ant-tabs-tab:active {
color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
8051
|
|
|
8052
8053
8054
|
.ant-tabs-nav .ant-tabs-tab-active {
color: @primary-color;
}
|
|
8055
|
|
|
8056
8057
8058
|
.ant-tabs-vertical > .ant-tabs-bar {
border-bottom: 0;
}
|
|
8059
|
|
|
8060
8061
8062
|
.ant-tabs-vertical.ant-tabs-left > .ant-tabs-bar {
border-right: 1px solid #e8e8e8;
}
|
|
8063
|
|
|
8064
8065
8066
|
.ant-tabs-vertical.ant-tabs-left > .ant-tabs-content {
border-left: 1px solid #e8e8e8;
}
|
|
8067
|
|
|
8068
8069
8070
|
.ant-tabs-vertical.ant-tabs-right > .ant-tabs-bar {
border-left: 1px solid #e8e8e8;
}
|
|
8071
|
|
|
8072
8073
8074
|
.ant-tabs-vertical.ant-tabs-right > .ant-tabs-content {
border-right: 1px solid #e8e8e8;
}
|
|
8075
|
|
|
8076
8077
8078
8079
8080
8081
|
.ant-tag {
color: rgba(0, 0, 0, 0.65);
border-radius: 4px;
border: 1px solid #d9d9d9;
background: #fafafa;
}
|
|
8082
|
|
|
8083
8084
8085
8086
8087
|
.ant-tag,
.ant-tag a,
.ant-tag a:hover {
color: rgba(0, 0, 0, 0.65);
}
|
|
8088
|
|
|
8089
8090
8091
|
.ant-tag .anticon-close {
color: rgba(0, 0, 0, 0.45);
}
|
|
8092
|
|
|
8093
8094
8095
|
.ant-tag .anticon-close:hover {
color: rgba(0, 0, 0, 0.85);
}
|
|
8096
|
|
|
8097
8098
8099
|
.ant-tag-has-color {
border-color: transparent;
}
|
|
8100
|
|
|
8101
8102
8103
8104
8105
8106
8107
|
.ant-tag-has-color,
.ant-tag-has-color a,
.ant-tag-has-color a:hover,
.ant-tag-has-color .anticon-close,
.ant-tag-has-color .anticon-close:hover {
color: #fff;
}
|
|
8108
|
|
|
8109
8110
8111
8112
|
.ant-tag-checkable {
background-color: transparent;
border-color: transparent;
}
|
|
8113
|
|
|
8114
8115
8116
|
.ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
color: @primary-color;
}
|
|
8117
|
|
|
8118
8119
8120
8121
|
.ant-tag-checkable:active,
.ant-tag-checkable-checked {
color: #fff;
}
|
|
8122
|
|
|
8123
8124
8125
|
.ant-tag-checkable-checked {
background-color: @primary-color;
}
|
|
8126
|
|
|
8127
8128
8129
|
.ant-tag-checkable:active {
background-color: color(~`colorPalette("@{primary-color}", 7)`);
}
|
|
8130
|
|
|
8131
8132
8133
8134
8135
|
.ant-tag-pink {
color: #eb2f96;
background: #fff0f6;
border-color: #ffadd2;
}
|
|
8136
|
|
|
8137
8138
8139
8140
8141
|
.ant-tag-pink-inverse {
background: #eb2f96;
border-color: #eb2f96;
color: #fff;
}
|
|
8142
|
|
|
8143
8144
8145
8146
8147
|
.ant-tag-magenta {
color: #eb2f96;
background: #fff0f6;
border-color: #ffadd2;
}
|
|
8148
|
|
|
8149
8150
8151
8152
8153
|
.ant-tag-magenta-inverse {
background: #eb2f96;
border-color: #eb2f96;
color: #fff;
}
|
|
8154
|
|
|
8155
8156
8157
8158
8159
|
.ant-tag-red {
color: #f5222d;
background: #fff1f0;
border-color: #ffa39e;
}
|
|
8160
|
|
|
8161
8162
8163
8164
8165
|
.ant-tag-red-inverse {
background: #f5222d;
border-color: #f5222d;
color: #fff;
}
|
|
8166
|
|
|
8167
8168
8169
8170
8171
|
.ant-tag-volcano {
color: #fa541c;
background: #fff2e8;
border-color: #ffbb96;
}
|
|
8172
|
|
|
8173
8174
8175
8176
8177
|
.ant-tag-volcano-inverse {
background: #fa541c;
border-color: #fa541c;
color: #fff;
}
|
|
8178
|
|
|
8179
8180
8181
8182
8183
|
.ant-tag-orange {
color: #fa8c16;
background: #fff7e6;
border-color: #ffd591;
}
|
|
8184
|
|
|
8185
8186
8187
8188
8189
|
.ant-tag-orange-inverse {
background: #fa8c16;
border-color: #fa8c16;
color: #fff;
}
|
|
8190
|
|
|
8191
8192
8193
8194
8195
|
.ant-tag-yellow {
color: #fadb14;
background: #feffe6;
border-color: #fffb8f;
}
|
|
8196
|
|
|
8197
8198
8199
8200
8201
|
.ant-tag-yellow-inverse {
background: #fadb14;
border-color: #fadb14;
color: #fff;
}
|
|
8202
|
|
|
8203
8204
8205
8206
8207
|
.ant-tag-gold {
color: #faad14;
background: #fffbe6;
border-color: #ffe58f;
}
|
|
8208
|
|
|
8209
8210
8211
8212
8213
|
.ant-tag-gold-inverse {
background: #faad14;
border-color: #faad14;
color: #fff;
}
|
|
8214
|
|
|
8215
8216
8217
8218
8219
|
.ant-tag-cyan {
color: #13c2c2;
background: #e6fffb;
border-color: #87e8de;
}
|
|
8220
|
|
|
8221
8222
8223
8224
8225
|
.ant-tag-cyan-inverse {
background: #13c2c2;
border-color: #13c2c2;
color: #fff;
}
|
|
8226
|
|
|
8227
8228
8229
8230
8231
|
.ant-tag-lime {
color: #a0d911;
background: #fcffe6;
border-color: #eaff8f;
}
|
|
8232
|
|
|
8233
8234
8235
8236
8237
|
.ant-tag-lime-inverse {
background: #a0d911;
border-color: #a0d911;
color: #fff;
}
|
|
8238
|
|
|
8239
8240
8241
8242
8243
|
.ant-tag-green {
color: #52c41a;
background: #f6ffed;
border-color: #b7eb8f;
}
|
|
8244
|
|
|
8245
8246
8247
8248
8249
|
.ant-tag-green-inverse {
background: #52c41a;
border-color: #52c41a;
color: #fff;
}
|
|
8250
|
|
|
8251
8252
8253
8254
8255
|
.ant-tag-blue {
color: @primary-color;
background: color(~`colorPalette("@{primary-color}", 1)`);
border-color: color(~`colorPalette("@{primary-color}", 3)`);
}
|
|
8256
|
|
|
8257
8258
8259
8260
8261
|
.ant-tag-blue-inverse {
background: @primary-color;
border-color: @primary-color;
color: #fff;
}
|
|
8262
|
|
|
8263
8264
8265
8266
8267
|
.ant-tag-geekblue {
color: #2f54eb;
background: #f0f5ff;
border-color: #adc6ff;
}
|
|
8268
|
|
|
8269
8270
8271
8272
8273
|
.ant-tag-geekblue-inverse {
background: #2f54eb;
border-color: #2f54eb;
color: #fff;
}
|
|
8274
|
|
|
8275
8276
8277
8278
8279
|
.ant-tag-purple {
color: #722ed1;
background: #f9f0ff;
border-color: #d3adf7;
}
|
|
8280
|
|
|
8281
8282
8283
8284
8285
|
.ant-tag-purple-inverse {
background: #722ed1;
border-color: #722ed1;
color: #fff;
}
|
|
8286
|
|
|
8287
8288
8289
|
.ant-time-picker-panel {
color: rgba(0, 0, 0, 0.65);
}
|
|
8290
|
|
|
8291
8292
8293
8294
8295
8296
|
.ant-time-picker-panel-inner {
background-color: #fff;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
background-clip: padding-box;
}
|
|
8297
|
|
|
8298
8299
8300
|
.ant-time-picker-panel-input {
border: 0;
}
|
|
8301
|
|
|
8302
8303
8304
|
.ant-time-picker-panel-input::-moz-placeholder {
color: #bfbfbf;
}
|
|
8305
|
|
|
8306
8307
8308
|
.ant-time-picker-panel-input:-ms-input-placeholder {
color: #bfbfbf;
}
|
|
8309
|
|
|
8310
8311
8312
|
.ant-time-picker-panel-input::-webkit-input-placeholder {
color: #bfbfbf;
}
|
|
8313
|
|
|
8314
8315
8316
|
.ant-time-picker-panel-input-wrap {
border-bottom: 1px solid #e8e8e8;
}
|
|
8317
|
|
|
8318
8319
8320
|
.ant-time-picker-panel-input-invalid {
border-color: red;
}
|
|
8321
|
|
|
8322
8323
8324
|
.ant-time-picker-panel-clear-btn-icon svg {
color: rgba(0, 0, 0, 0.25);
}
|
|
8325
|
|
|
8326
8327
8328
|
.ant-time-picker-panel-clear-btn-icon svg:hover {
color: rgba(0, 0, 0, 0.45);
}
|
|
8329
|
|
|
8330
8331
8332
|
.ant-time-picker-panel-select {
border-left: 1px solid #e8e8e8;
}
|
|
8333
|
|
|
8334
8335
8336
|
.ant-time-picker-panel-select:first-child {
border-left: 0;
}
|
|
8337
|
|
|
8338
8339
8340
|
.ant-time-picker-panel-select:last-child {
border-right: 0;
}
|
|
8341
|
|
|
8342
8343
8344
|
.ant-time-picker-panel-select li:hover {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
8345
|
|
|
8346
8347
8348
|
li.ant-time-picker-panel-select-option-selected {
background: #f5f5f5;
}
|
|
8349
|
|
|
8350
8351
8352
|
li.ant-time-picker-panel-select-option-selected:hover {
background: #f5f5f5;
}
|
|
8353
|
|
|
8354
8355
8356
|
li.ant-time-picker-panel-select-option-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
8357
|
|
|
8358
8359
8360
|
li.ant-time-picker-panel-select-option-disabled:hover {
background: transparent;
}
|
|
8361
|
|
|
8362
8363
8364
|
.ant-time-picker-panel-addon {
border-top: 1px solid #e8e8e8;
}
|
|
8365
|
|
|
8366
8367
8368
|
.ant-time-picker {
color: rgba(0, 0, 0, 0.65);
}
|
|
8369
|
|
|
8370
8371
8372
8373
8374
8375
8376
|
.ant-time-picker-input {
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
background-image: none;
border: 1px solid #d9d9d9;
border-radius: 4px;
}
|
|
8377
|
|
|
8378
8379
8380
|
.ant-time-picker-input::-moz-placeholder {
color: #bfbfbf;
}
|
|
8381
|
|
|
8382
8383
8384
|
.ant-time-picker-input:-ms-input-placeholder {
color: #bfbfbf;
}
|
|
8385
|
|
|
8386
8387
8388
|
.ant-time-picker-input::-webkit-input-placeholder {
color: #bfbfbf;
}
|
|
8389
|
|
|
8390
8391
8392
8393
|
.ant-time-picker-input:hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
border-right-width: 1px !important;
}
|
|
8394
|
|
|
8395
8396
8397
8398
8399
|
.ant-time-picker-input:focus {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
|
|
8400
|
|
|
8401
8402
8403
8404
|
.ant-time-picker-input-disabled {
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
8405
|
|
|
8406
8407
8408
8409
|
.ant-time-picker-input-disabled:hover {
border-color: #e6d8d8;
border-right-width: 1px !important;
}
|
|
8410
|
|
|
8411
8412
8413
8414
|
.ant-time-picker-input[disabled] {
background-color: #f5f5f5;
color: rgba(0, 0, 0, 0.25);
}
|
|
8415
|
|
|
8416
8417
8418
8419
|
.ant-time-picker-input[disabled]:hover {
border-color: #e6d8d8;
border-right-width: 1px !important;
}
|
|
8420
|
|
|
8421
8422
8423
|
.ant-time-picker-icon {
color: rgba(0, 0, 0, 0.25);
}
|
|
8424
|
|
|
8425
8426
8427
|
.ant-time-picker-icon .ant-time-picker-clock-icon {
color: rgba(0, 0, 0, 0.25);
}
|
|
8428
|
|
|
8429
8430
8431
|
.ant-timeline {
color: rgba(0, 0, 0, 0.65);
}
|
|
8432
|
|
|
8433
8434
8435
|
.ant-timeline-item-tail {
border-left: 2px solid #e8e8e8;
}
|
|
8436
|
|
|
8437
8438
8439
8440
8441
|
.ant-timeline-item-head {
background-color: #fff;
border-radius: 100px;
border: 2px solid transparent;
}
|
|
8442
|
|
|
8443
8444
8445
8446
|
.ant-timeline-item-head-blue {
border-color: @primary-color;
color: @primary-color;
}
|
|
8447
|
|
|
8448
8449
8450
8451
|
.ant-timeline-item-head-red {
border-color: #f5222d;
color: #f5222d;
}
|
|
8452
|
|
|
8453
8454
8455
8456
|
.ant-timeline-item-head-green {
border-color: #52c41a;
color: #52c41a;
}
|
|
8457
|
|
|
8458
8459
8460
8461
|
.ant-timeline-item-head-custom {
border: 0;
border-radius: 0;
}
|
|
8462
|
|
|
8463
8464
8465
|
.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail {
border-left: 2px dotted #e8e8e8;
}
|
|
8466
|
|
|
8467
8468
8469
|
.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail {
border-left: 2px dotted #e8e8e8;
}
|
|
8470
|
|
|
8471
8472
8473
|
.ant-tooltip {
color: rgba(0, 0, 0, 0.65);
}
|
|
8474
|
|
|
8475
8476
8477
8478
8479
8480
|
.ant-tooltip-inner {
color: #fff;
background-color: rgba(0, 0, 0, 0.75);
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
|
|
8481
|
|
|
8482
8483
8484
8485
|
.ant-tooltip-arrow {
border-color: transparent;
border-style: solid;
}
|
|
8486
|
|
|
8487
8488
8489
8490
8491
8492
|
.ant-tooltip-placement-top .ant-tooltip-arrow,
.ant-tooltip-placement-topLeft .ant-tooltip-arrow,
.ant-tooltip-placement-topRight .ant-tooltip-arrow {
border-width: 5px 5px 0;
border-top-color: rgba(0, 0, 0, 0.75);
}
|
|
8493
|
|
|
8494
8495
8496
8497
8498
8499
|
.ant-tooltip-placement-right .ant-tooltip-arrow,
.ant-tooltip-placement-rightTop .ant-tooltip-arrow,
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
border-width: 5px 5px 5px 0;
border-right-color: rgba(0, 0, 0, 0.75);
}
|
|
8500
|
|
|
8501
8502
8503
8504
8505
8506
|
.ant-tooltip-placement-left .ant-tooltip-arrow,
.ant-tooltip-placement-leftTop .ant-tooltip-arrow,
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
border-width: 5px 0 5px 5px;
border-left-color: rgba(0, 0, 0, 0.75);
}
|
|
8507
|
|
|
8508
8509
8510
8511
8512
8513
|
.ant-tooltip-placement-bottom .ant-tooltip-arrow,
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
border-width: 0 5px 5px;
border-bottom-color: rgba(0, 0, 0, 0.75);
}
|
|
8514
|
|
|
8515
8516
8517
|
.ant-transfer {
color: rgba(0, 0, 0, 0.65);
}
|
|
8518
|
|
|
8519
8520
8521
|
.ant-transfer-disabled .ant-transfer-list {
background: #f5f5f5;
}
|
|
8522
|
|
|
8523
8524
8525
8526
|
.ant-transfer-list {
border: 1px solid #d9d9d9;
border-radius: 4px;
}
|
|
8527
|
|
|
8528
8529
8530
|
.ant-transfer-list-search-action {
color: rgba(0, 0, 0, 0.25);
}
|
|
8531
|
|
|
8532
8533
8534
|
.ant-transfer-list-search-action .anticon {
color: rgba(0, 0, 0, 0.25);
}
|
|
8535
|
|
|
8536
8537
8538
|
.ant-transfer-list-search-action .anticon:hover {
color: rgba(0, 0, 0, 0.45);
}
|
|
8539
|
|
|
8540
8541
8542
8543
8544
8545
|
.ant-transfer-list-header {
border-radius: 4px 4px 0 0;
background: #fff;
color: rgba(0, 0, 0, 0.65);
border-bottom: 1px solid #e8e8e8;
}
|
|
8546
|
|
|
8547
8548
8549
|
.ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
8550
|
|
|
8551
8552
8553
|
.ant-transfer-list-content-item-disabled {
color: rgba(0, 0, 0, 0.25);
}
|
|
8554
|
|
|
8555
8556
8557
|
.ant-transfer-list-body-not-found {
color: rgba(0, 0, 0, 0.25);
}
|
|
8558
|
|
|
8559
8560
8561
8562
|
.ant-transfer-list-footer {
border-top: 1px solid #e8e8e8;
border-radius: 0 0 4px 4px;
}
|
|
8563
|
|
|
8564
8565
8566
|
.ant-select-tree-checkbox {
color: rgba(0, 0, 0, 0.65);
}
|
|
8567
|
|
|
8568
8569
8570
8571
8572
|
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner,
.ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner,
.ant-select-tree-checkbox-input:focus + .ant-select-tree-checkbox-inner {
border-color: @primary-color;
}
|
|
8573
|
|
|
8574
8575
8576
8577
|
.ant-select-tree-checkbox-checked:after {
border-radius: 2px;
border: 1px solid @primary-color;
}
|
|
8578
|
|
|
8579
8580
8581
8582
8583
|
.ant-select-tree-checkbox-inner {
border: 1px solid #d9d9d9;
border-radius: 2px;
background-color: #fff;
}
|
|
8584
|
|
|
8585
8586
8587
8588
8589
|
.ant-select-tree-checkbox-inner:after {
border: 2px solid #fff;
border-top: 0;
border-left: 0;
}
|
|
8590
|
|
|
8591
8592
8593
8594
|
.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner:after {
border: 0;
background-color: @primary-color;
}
|
|
8595
|
|
|
8596
8597
8598
|
.ant-select-tree-checkbox-indeterminate.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner:after {
border-color: rgba(0, 0, 0, 0.25);
}
|
|
8599
|
|
|
8600
8601
8602
8603
8604
|
.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner:after {
border: 2px solid #fff;
border-top: 0;
border-left: 0;
}
|
|
8605
|
|
|
8606
8607
8608
8609
|
.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner {
background-color: @primary-color;
border-color: @primary-color;
}
|
|
8610
|
|
|
8611
8612
8613
|
.ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner:after {
border-color: rgba(0, 0, 0, 0.25);
}
|
|
8614
|
|
|
8615
8616
8617
8618
|
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner {
border-color: #d9d9d9 !important;
background-color: #f5f5f5;
}
|
|
8619
|
|
|
8620
8621
8622
|
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner:after {
border-color: #f5f5f5;
}
|
|
8623
|
|
|
8624
8625
8626
|
.ant-select-tree-checkbox-disabled + span {
color: rgba(0, 0, 0, 0.25);
}
|
|
8627
|
|
|
8628
8629
8630
|
.ant-select-tree-checkbox-wrapper {
color: rgba(0, 0, 0, 0.65);
}
|
|
8631
|
|
|
8632
8633
8634
|
.ant-select-tree-checkbox-group {
color: rgba(0, 0, 0, 0.65);
}
|
|
8635
|
|
|
8636
8637
8638
|
.ant-select-tree {
color: rgba(0, 0, 0, 0.65);
}
|
|
8639
|
|
|
8640
8641
8642
8643
|
.ant-select-tree li .ant-select-tree-node-content-wrapper {
border-radius: 2px;
color: rgba(0, 0, 0, 0.65);
}
|
|
8644
|
|
|
8645
8646
8647
|
.ant-select-tree li .ant-select-tree-node-content-wrapper:hover {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
8648
|
|
|
8649
8650
8651
|
.ant-select-tree li .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected {
background-color: color(~`colorPalette("@{primary-color}", 2)`);
}
|
|
8652
|
|
|
8653
8654
8655
8656
|
.ant-select-tree li span.ant-select-tree-switcher,
.ant-select-tree li span.ant-select-tree-iconEle {
border: 0 none;
}
|
|
8657
|
|
|
8658
8659
8660
|
.ant-select-tree li span.ant-select-icon_loading .ant-select-switcher-loading-icon {
color: @primary-color;
}
|
|
8661
|
|
|
8662
8663
8664
8665
|
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-loading-icon,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-loading-icon {
color: @primary-color;
}
|
|
8666
|
|
|
8667
8668
8669
8670
8671
|
li.ant-select-tree-treenode-disabled > span:not(.ant-select-tree-switcher),
li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper,
li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper span {
color: rgba(0, 0, 0, 0.25);
}
|
|
8672
|
|
|
8673
8674
8675
|
li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper:hover {
background: transparent;
}
|
|
8676
|
|
|
8677
8678
8679
|
.ant-select-tree-dropdown {
color: rgba(0, 0, 0, 0.65);
}
|
|
8680
|
|
|
8681
8682
8683
8684
|
.ant-select-tree-dropdown .ant-select-dropdown-search .ant-select-search__field {
border: 1px solid #d9d9d9;
border-radius: 4px;
}
|
|
8685
|
|
|
8686
8687
8688
|
.ant-select-tree-dropdown .ant-select-not-found {
color: rgba(0, 0, 0, 0.25);
}
|
|
8689
|
|
|
8690
8691
8692
8693
|
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper {
border-radius: 0;
}
|
|
8694
|
|
|
8695
8696
8697
8698
|
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover {
background: transparent;
}
|
|
8699
|
|
|
8700
8701
8702
8703
|
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover:before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover:before {
background: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
8704
|
|
|
8705
8706
8707
8708
8709
|
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper.ant-tree-node-selected,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper.ant-tree-node-selected {
color: #fff;
background: transparent;
}
|
|
8710
|
|
|
8711
8712
8713
8714
|
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-switcher,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-switcher {
color: #fff;
}
|
|
8715
|
|
|
8716
8717
8718
8719
|
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner {
border-color: @primary-color;
}
|
|
8720
|
|
|
8721
8722
8723
8724
|
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked:after,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked:after {
border-color: #fff;
}
|
|
8725
|
|
|
8726
8727
8728
8729
|
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner {
background: #fff;
}
|
|
8730
|
|
|
8731
8732
8733
8734
|
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after {
border-color: @primary-color;
}
|
|
8735
|
|
|
8736
8737
8738
8739
|
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper:before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper:before {
background: @primary-color;
}
|
|
8740
|
|
|
8741
8742
8743
|
.ant-tree-checkbox {
color: rgba(0, 0, 0, 0.65);
}
|
|
8744
|
|
|
8745
8746
8747
8748
8749
|
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.ant-tree-checkbox:hover .ant-tree-checkbox-inner,
.ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner {
border-color: @primary-color;
}
|
|
8750
|
|
|
8751
8752
8753
8754
|
.ant-tree-checkbox-checked:after {
border-radius: 2px;
border: 1px solid @primary-color;
}
|
|
8755
|
|
|
8756
8757
8758
8759
8760
|
.ant-tree-checkbox-inner {
border: 1px solid #d9d9d9;
border-radius: 2px;
background-color: #fff;
}
|
|
8761
|
|
|
8762
8763
8764
8765
8766
|
.ant-tree-checkbox-inner:after {
border: 2px solid #fff;
border-top: 0;
border-left: 0;
}
|
|
8767
|
|
|
8768
8769
8770
8771
|
.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner:after {
border: 0;
background-color: @primary-color;
}
|
|
8772
|
|
|
8773
8774
8775
|
.ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled .ant-tree-checkbox-inner:after {
border-color: rgba(0, 0, 0, 0.25);
}
|
|
8776
|
|
|
8777
8778
8779
8780
8781
|
.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after {
border: 2px solid #fff;
border-top: 0;
border-left: 0;
}
|
|
8782
|
|
|
8783
8784
8785
8786
|
.ant-tree-checkbox-checked .ant-tree-checkbox-inner {
background-color: @primary-color;
border-color: @primary-color;
}
|
|
8787
|
|
|
8788
8789
8790
|
.ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after {
border-color: rgba(0, 0, 0, 0.25);
}
|
|
8791
|
|
|
8792
8793
8794
8795
|
.ant-tree-checkbox-disabled .ant-tree-checkbox-inner {
border-color: #d9d9d9 !important;
background-color: #f5f5f5;
}
|
|
8796
|
|
|
8797
8798
8799
|
.ant-tree-checkbox-disabled .ant-tree-checkbox-inner:after {
border-color: #f5f5f5;
}
|
|
8800
|
|
|
8801
8802
8803
|
.ant-tree-checkbox-disabled + span {
color: rgba(0, 0, 0, 0.25);
}
|
|
8804
|
|
|
8805
8806
8807
|
.ant-tree-checkbox-wrapper {
color: rgba(0, 0, 0, 0.65);
}
|
|
8808
|
|
|
8809
8810
8811
|
.ant-tree-checkbox-group {
color: rgba(0, 0, 0, 0.65);
}
|
|
8812
|
|
|
8813
8814
8815
|
.ant-tree {
color: rgba(0, 0, 0, 0.65);
}
|
|
8816
|
|
|
8817
8818
8819
8820
8821
|
.ant-tree li span[draggable],
.ant-tree li span[draggable="true"] {
border-top: 2px transparent solid;
border-bottom: 2px transparent solid;
}
|
|
8822
|
|
|
8823
8824
8825
8826
|
.ant-tree li.drag-over > span[draggable] {
background-color: @primary-color;
color: white;
}
|
|
8827
|
|
|
8828
8829
8830
|
.ant-tree li.drag-over-gap-top > span[draggable] {
border-top-color: @primary-color;
}
|
|
8831
|
|
|
8832
8833
8834
|
.ant-tree li.drag-over-gap-bottom > span[draggable] {
border-bottom-color: @primary-color;
}
|
|
8835
|
|
|
8836
8837
8838
|
.ant-tree li.filter-node > span {
color: #f5222d !important;
}
|
|
8839
|
|
|
8840
8841
8842
8843
|
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon,
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon {
color: @primary-color;
}
|
|
8844
|
|
|
8845
8846
8847
8848
|
.ant-tree li .ant-tree-node-content-wrapper {
border-radius: 2px;
color: rgba(0, 0, 0, 0.65);
}
|
|
8849
|
|
|
8850
8851
8852
|
.ant-tree li .ant-tree-node-content-wrapper:hover {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
8853
|
|
|
8854
8855
8856
|
.ant-tree li .ant-tree-node-content-wrapper.ant-tree-node-selected {
background-color: color(~`colorPalette("@{primary-color}", 2)`);
}
|
|
8857
|
|
|
8858
8859
8860
8861
|
.ant-tree li span.ant-tree-switcher,
.ant-tree li span.ant-tree-iconEle {
border: 0 none;
}
|
|
8862
|
|
|
8863
8864
8865
8866
8867
|
li.ant-tree-treenode-disabled > span:not(.ant-tree-switcher),
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper,
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper span {
color: rgba(0, 0, 0, 0.25);
}
|
|
8868
|
|
|
8869
8870
8871
|
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper:hover {
background: transparent;
}
|
|
8872
|
|
|
8873
8874
8875
8876
|
.ant-tree.ant-tree-show-line li span.ant-tree-switcher {
background: #fff;
color: rgba(0, 0, 0, 0.45);
}
|
|
8877
|
|
|
8878
8879
8880
|
.ant-tree.ant-tree-show-line li:not(:last-child):before {
border-left: 1px solid #d9d9d9;
}
|
|
8881
|
|
|
8882
8883
8884
|
.ant-upload {
color: rgba(0, 0, 0, 0.65);
}
|
|
8885
|
|
|
8886
8887
8888
8889
8890
|
.ant-upload.ant-upload-select-picture-card {
border: 1px dashed #d9d9d9;
border-radius: 4px;
background-color: #fafafa;
}
|
|
8891
|
|
|
8892
8893
8894
|
.ant-upload.ant-upload-select-picture-card:hover {
border-color: @primary-color;
}
|
|
8895
|
|
|
8896
8897
8898
8899
8900
|
.ant-upload.ant-upload-drag {
border: 1px dashed #d9d9d9;
border-radius: 4px;
background: #fafafa;
}
|
|
8901
|
|
|
8902
8903
8904
|
.ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) {
border: 2px dashed color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
8905
|
|
|
8906
8907
8908
|
.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
border-color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
8909
|
|
|
8910
8911
8912
|
.ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon {
color: color(~`colorPalette("@{primary-color}", 5)`);
}
|
|
8913
|
|
|
8914
8915
8916
|
.ant-upload.ant-upload-drag p.ant-upload-text {
color: rgba(0, 0, 0, 0.85);
}
|
|
8917
|
|
|
8918
8919
8920
|
.ant-upload.ant-upload-drag p.ant-upload-hint {
color: rgba(0, 0, 0, 0.45);
}
|
|
8921
|
|
|
8922
8923
8924
|
.ant-upload.ant-upload-drag .anticon-plus {
color: rgba(0, 0, 0, 0.25);
}
|
|
8925
|
|
|
8926
8927
8928
|
.ant-upload.ant-upload-drag .anticon-plus:hover {
color: rgba(0, 0, 0, 0.45);
}
|
|
8929
|
|
|
8930
8931
8932
|
.ant-upload.ant-upload-drag:hover .anticon-plus {
color: rgba(0, 0, 0, 0.45);
}
|
|
8933
|
|
|
8934
8935
8936
|
.ant-upload-list {
color: rgba(0, 0, 0, 0.65);
}
|
|
8937
|
|
|
8938
8939
8940
8941
|
.ant-upload-list-item-info .anticon-loading,
.ant-upload-list-item-info .anticon-paper-clip {
color: rgba(0, 0, 0, 0.45);
}
|
|
8942
|
|
|
8943
8944
8945
|
.ant-upload-list-item .anticon-close {
color: rgba(0, 0, 0, 0.45);
}
|
|
8946
|
|
|
8947
8948
8949
|
.ant-upload-list-item .anticon-close:hover {
color: rgba(0, 0, 0, 0.65);
}
|
|
8950
|
|
|
8951
8952
8953
|
.ant-upload-list-item:hover .ant-upload-list-item-info {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
8954
|
|
|
8955
8956
8957
8958
8959
|
.ant-upload-list-item-error,
.ant-upload-list-item-error .anticon-paper-clip,
.ant-upload-list-item-error .ant-upload-list-item-name {
color: #f5222d;
}
|
|
8960
|
|
|
8961
8962
8963
|
.ant-upload-list-item-error .anticon-close {
color: #f5222d !important;
}
|
|
8964
|
|
|
8965
8966
8967
8968
8969
|
.ant-upload-list-picture .ant-upload-list-item,
.ant-upload-list-picture-card .ant-upload-list-item {
border-radius: 4px;
border: 1px solid #d9d9d9;
}
|
|
8970
|
|
|
8971
8972
8973
8974
|
.ant-upload-list-picture .ant-upload-list-item:hover,
.ant-upload-list-picture-card .ant-upload-list-item:hover {
background: transparent;
}
|
|
8975
|
|
|
8976
8977
8978
8979
|
.ant-upload-list-picture .ant-upload-list-item-error,
.ant-upload-list-picture-card .ant-upload-list-item-error {
border-color: #f5222d;
}
|
|
8980
|
|
|
8981
8982
8983
8984
|
.ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info {
background: transparent;
}
|
|
8985
|
|
|
8986
8987
8988
8989
|
.ant-upload-list-picture .ant-upload-list-item-uploading,
.ant-upload-list-picture-card .ant-upload-list-item-uploading {
border-style: dashed;
}
|
|
8990
|
|
|
8991
8992
8993
8994
|
.ant-upload-list-picture .ant-upload-list-item-icon,
.ant-upload-list-picture-card .ant-upload-list-item-icon {
color: rgba(0, 0, 0, 0.25);
}
|
|
8995
|
|
|
8996
8997
8998
8999
|
.ant-upload-list-picture .ant-upload-list-item-thumbnail.anticon:before,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail.anticon:before {
color: rgba(0, 0, 0, 0.45);
}
|
|
9000
|
|
|
9001
9002
9003
|
.ant-upload-list-picture-card .ant-upload-list-item-info:before {
background-color: rgba(0, 0, 0, 0.5);
}
|
|
9004
|
|
|
9005
9006
9007
9008
|
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete {
color: rgba(255, 255, 255, 0.85);
}
|
|
9009
|
|
|
9010
9011
9012
9013
|
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o:hover,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover {
color: #fff;
}
|
|
9014
|
|
|
9015
9016
9017
|
.ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
background-color: #fafafa;
}
|
|
9018
|
|
|
9019
9020
9021
|
.ant-upload-list-picture-card .ant-upload-list-item-uploading-text {
color: rgba(0, 0, 0, 0.45);
}
|
|
9022
|
|
|
9023
9024
9025
9026
9027
9028
9029
9030
9031
9032
9033
9034
|
.ant-upload-list .ant-upload-success-icon {
color: #52c41a;
}
.drawer .drawer-content {
background: #001529;
}
.ant-list-item-meta .taobao {
color: #ff4000;
border-radius: 4px;
}
|
|
9035
|
|
|
9036
9037
9038
9039
9040
|
.ant-list-item-meta .dingding {
background-color: #2eabff;
color: #fff;
border-radius: 4px;
}
|
|
9041
|
|
|
9042
9043
9044
9045
|
.ant-list-item-meta .alipay {
color: #2eabff;
border-radius: 4px;
}
|
|
9046
|
|
|
9047
9048
9049
|
font.strong {
color: #52c41a;
}
|
|
9050
|
|
|
9051
9052
9053
|
font.medium {
color: #faad14;
}
|
|
9054
|
|
|
9055
9056
9057
9058
9059
9060
9061
9062
9063
9064
9065
9066
9067
9068
9069
9070
9071
9072
9073
9074
9075
9076
9077
9078
9079
9080
9081
9082
9083
|
font.weak {
color: #f5222d;
}
// 侧边导航栏首页颜色跟随主题变化
.ant-menu.ant-menu-root > .ant-menu-item:first-child.ant-menu-item-selected {
& > a,
& > a:hover {
color: @primary-color;
}
}
// begin -------- JAreaLinkage 三级联动样式 --------------
.cascader-menu-list .cascader-menu-option.hover,
.cascader-menu-list .cascader-menu-option:hover {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
.area-selectable-list .area-select-option.hover {
background-color: color(~`colorPalette("@{primary-color}", 1)`);
}
.area-select:hover {
border-color: @primary-color;
}
.area-select:active {
box-shadow: 0 0 0 2px color(~`colorPalette("@{primary-color}", 1)`);
}
|
|
9084
|
|
|
9085
9086
9087
9088
9089
9090
9091
9092
9093
9094
9095
|
// end -------- JAreaLinkage 三级联动样式 --------------
// TESTA-521
.ant-menu-submenu-selected {
color: @primary-color;
}
// TESTA-521
.tab-layout-tabs.ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active {
border-color: @primary-color !important;
}
|