@oceanbase/design 0.4.15 → 1.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/design.min.css +1 -1
- package/dist/design.min.js +1 -1
- package/es/_util/genStyle.d.ts +0 -2
- package/es/_util/genStyle.js +0 -77
- package/es/badge/style/index.js +0 -1
- package/es/button/style/index.js +1 -30
- package/es/card/style/index.js +4 -2
- package/es/config-provider/index.js +1 -5
- package/es/descriptions/hooks/useItems.js +3 -2
- package/es/descriptions/style/index.js +1 -3
- package/es/empty/style/index.js +2 -7
- package/es/form/FormItem.d.ts +2 -1
- package/es/form/FormItem.js +1 -0
- package/es/global.css +7 -7
- package/es/index.d.ts +0 -1
- package/es/index.js +1 -2
- package/es/result/style/index.js +2 -5
- package/es/table/index.d.ts +2 -2
- package/es/table/style/index.js +8 -31
- package/es/tabs/index.d.ts +8 -6
- package/es/tabs/index.js +10 -7
- package/es/tabs/style/index.js +2 -3
- package/es/theme/default.js +62 -39
- package/es/theme/style/aliyun.less +125 -125
- package/es/theme/style/compact.less +135 -135
- package/es/theme/style/dark.less +136 -136
- package/es/theme/style/default.less +135 -135
- package/es/typography/Link.d.ts +5 -1
- package/es/typography/Link.js +1 -0
- package/es/typography/Paragraph.d.ts +5 -1
- package/es/typography/Paragraph.js +1 -0
- package/es/typography/Text.d.ts +5 -1
- package/es/typography/Text.js +1 -0
- package/es/typography/Title.d.ts +5 -1
- package/es/typography/Title.js +1 -0
- package/es/typography/style/index.js +2 -6
- package/lib/_util/genStyle.d.ts +0 -2
- package/lib/_util/genStyle.js +2 -118
- package/lib/badge/style/index.js +0 -1
- package/lib/button/style/index.js +1 -37
- package/lib/card/style/index.js +9 -1
- package/lib/config-provider/index.js +1 -8
- package/lib/descriptions/hooks/useItems.js +3 -2
- package/lib/descriptions/style/index.js +0 -2
- package/lib/empty/style/index.js +0 -5
- package/lib/form/FormItem.d.ts +2 -1
- package/lib/form/FormItem.js +6 -0
- package/lib/global.css +7 -7
- package/lib/index.d.ts +0 -1
- package/lib/index.js +0 -3
- package/lib/result/style/index.js +0 -4
- package/lib/table/index.d.ts +2 -2
- package/lib/table/style/index.js +1 -58
- package/lib/tabs/index.d.ts +8 -6
- package/lib/tabs/index.js +68 -62
- package/lib/tabs/style/index.js +6 -4
- package/lib/theme/default.js +62 -38
- package/lib/theme/style/aliyun.less +125 -125
- package/lib/theme/style/compact.less +135 -135
- package/lib/theme/style/dark.less +136 -136
- package/lib/theme/style/default.less +135 -135
- package/lib/typography/Link.d.ts +5 -1
- package/lib/typography/Link.js +1 -0
- package/lib/typography/Paragraph.d.ts +5 -1
- package/lib/typography/Paragraph.js +1 -0
- package/lib/typography/Text.d.ts +5 -1
- package/lib/typography/Text.js +1 -0
- package/lib/typography/Title.d.ts +5 -1
- package/lib/typography/Title.js +1 -0
- package/lib/typography/style/index.js +2 -9
- package/package.json +5 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@blue: #
|
|
1
|
+
@blue: #0e5fd1;
|
|
2
2
|
@purple: #722ED1;
|
|
3
3
|
@cyan: #13C2C2;
|
|
4
4
|
@green: #0ca774;
|
|
@@ -11,21 +11,21 @@
|
|
|
11
11
|
@geekblue: #2F54EB;
|
|
12
12
|
@gold: #FAAD14;
|
|
13
13
|
@lime: #A0D911;
|
|
14
|
-
@colorPrimary: #
|
|
14
|
+
@colorPrimary: #0e5fd1;
|
|
15
15
|
@colorSuccess: #0ca774;
|
|
16
16
|
@colorWarning: #dc8d19;
|
|
17
17
|
@colorError: #d73333;
|
|
18
|
-
@colorInfo: #
|
|
19
|
-
@colorLink: #
|
|
18
|
+
@colorInfo: #0e5fd1;
|
|
19
|
+
@colorLink: #0e5fd1;
|
|
20
20
|
@colorTextBase: #fff;
|
|
21
21
|
@colorBgBase: #000;
|
|
22
22
|
@fontFamily: -apple-system, 'Noto Sans', BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
23
23
|
@fontFamilyCode: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
24
|
-
@fontSize:
|
|
25
|
-
@lineWidth:
|
|
24
|
+
@fontSize: 13px;
|
|
25
|
+
@lineWidth: 1px;
|
|
26
26
|
@lineType: solid;
|
|
27
|
-
@motionUnit: 0.
|
|
28
|
-
@motionBase:
|
|
27
|
+
@motionUnit: 0.1s;
|
|
28
|
+
@motionBase: 0s;
|
|
29
29
|
@motionEaseOutCirc: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
30
30
|
@motionEaseInOutCirc: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
31
31
|
@motionEaseOut: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
@@ -34,36 +34,36 @@
|
|
|
34
34
|
@motionEaseInBack: cubic-bezier(0.71, -0.46, 0.88, 0.6);
|
|
35
35
|
@motionEaseInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
36
36
|
@motionEaseOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
|
|
37
|
-
@borderRadius:
|
|
38
|
-
@sizeUnit:
|
|
39
|
-
@sizeStep:
|
|
40
|
-
@sizePopupArrow:
|
|
41
|
-
@controlHeight:
|
|
37
|
+
@borderRadius: 4px;
|
|
38
|
+
@sizeUnit: 4px;
|
|
39
|
+
@sizeStep: 4px;
|
|
40
|
+
@sizePopupArrow: 16px;
|
|
41
|
+
@controlHeight: 32px;
|
|
42
42
|
@zIndexBase: 0;
|
|
43
43
|
@zIndexPopupBase: 1000;
|
|
44
44
|
@opacityImage: 1;
|
|
45
45
|
@wireframe: false;
|
|
46
46
|
@motion: true;
|
|
47
|
-
@blue-1: #
|
|
48
|
-
@blue1: #
|
|
49
|
-
@blue-2: #
|
|
50
|
-
@blue2: #
|
|
51
|
-
@blue-3: #
|
|
52
|
-
@blue3: #
|
|
53
|
-
@blue-4: #
|
|
54
|
-
@blue4: #
|
|
55
|
-
@blue-5: #
|
|
56
|
-
@blue5: #
|
|
57
|
-
@blue-6: #
|
|
58
|
-
@blue6: #
|
|
59
|
-
@blue-7: #
|
|
60
|
-
@blue7: #
|
|
61
|
-
@blue-8: #
|
|
62
|
-
@blue8: #
|
|
63
|
-
@blue-9: #
|
|
64
|
-
@blue9: #
|
|
65
|
-
@blue-10: #
|
|
66
|
-
@blue10: #
|
|
47
|
+
@blue-1: #111a2a;
|
|
48
|
+
@blue1: #111a2a;
|
|
49
|
+
@blue-2: #0f2342;
|
|
50
|
+
@blue2: #0f2342;
|
|
51
|
+
@blue-3: #122e57;
|
|
52
|
+
@blue3: #122e57;
|
|
53
|
+
@blue-4: #113c78;
|
|
54
|
+
@blue4: #113c78;
|
|
55
|
+
@blue-5: #0f4da4;
|
|
56
|
+
@blue5: #0f4da4;
|
|
57
|
+
@blue-6: #0e5fd1;
|
|
58
|
+
@blue6: #0e5fd1;
|
|
59
|
+
@blue-7: #3384e8;
|
|
60
|
+
@blue7: #3384e8;
|
|
61
|
+
@blue-8: #5aa4f3;
|
|
62
|
+
@blue8: #5aa4f3;
|
|
63
|
+
@blue-9: #84c0f8;
|
|
64
|
+
@blue9: #84c0f8;
|
|
65
|
+
@blue-10: #add7fa;
|
|
66
|
+
@blue10: #add7fa;
|
|
67
67
|
@purple-1: #1a1325;
|
|
68
68
|
@purple1: #1a1325;
|
|
69
69
|
@purple-2: #24163a;
|
|
@@ -322,15 +322,15 @@
|
|
|
322
322
|
@colorBgBlur: rgba(255,255,255,0.04);
|
|
323
323
|
@colorBorder: #424242;
|
|
324
324
|
@colorBorderSecondary: #303030;
|
|
325
|
-
@colorPrimaryBg: #
|
|
326
|
-
@colorPrimaryBgHover: #
|
|
327
|
-
@colorPrimaryBorder: #
|
|
328
|
-
@colorPrimaryBorderHover: #
|
|
329
|
-
@colorPrimaryHover: #
|
|
330
|
-
@colorPrimaryActive: #
|
|
331
|
-
@colorPrimaryTextHover: #
|
|
332
|
-
@colorPrimaryText: #
|
|
333
|
-
@colorPrimaryTextActive: #
|
|
325
|
+
@colorPrimaryBg: #122e57;
|
|
326
|
+
@colorPrimaryBgHover: #113c78;
|
|
327
|
+
@colorPrimaryBorder: #122e57;
|
|
328
|
+
@colorPrimaryBorderHover: #113c78;
|
|
329
|
+
@colorPrimaryHover: #3384e8;
|
|
330
|
+
@colorPrimaryActive: #0f4da4;
|
|
331
|
+
@colorPrimaryTextHover: #3384e8;
|
|
332
|
+
@colorPrimaryText: #0e5fd1;
|
|
333
|
+
@colorPrimaryTextActive: #0f4da4;
|
|
334
334
|
@colorSuccessBg: #11231e;
|
|
335
335
|
@colorSuccessBgHover: #0f362a;
|
|
336
336
|
@colorSuccessBorder: #114836;
|
|
@@ -360,58 +360,58 @@
|
|
|
360
360
|
@colorWarningTextHover: #e8a93d;
|
|
361
361
|
@colorWarningText: #dc8d19;
|
|
362
362
|
@colorWarningTextActive: #ad7018;
|
|
363
|
-
@colorInfoBg: #
|
|
364
|
-
@colorInfoBgHover: #
|
|
365
|
-
@colorInfoBorder: #
|
|
366
|
-
@colorInfoBorderHover: #
|
|
367
|
-
@colorInfoHover: #
|
|
368
|
-
@colorInfoActive: #
|
|
369
|
-
@colorInfoTextHover: #
|
|
370
|
-
@colorInfoText: #
|
|
371
|
-
@colorInfoTextActive: #
|
|
372
|
-
@colorLinkHover: #
|
|
373
|
-
@colorLinkActive: #
|
|
363
|
+
@colorInfoBg: #111a2a;
|
|
364
|
+
@colorInfoBgHover: #0f2342;
|
|
365
|
+
@colorInfoBorder: #122e57;
|
|
366
|
+
@colorInfoBorderHover: #113c78;
|
|
367
|
+
@colorInfoHover: #113c78;
|
|
368
|
+
@colorInfoActive: #0f4da4;
|
|
369
|
+
@colorInfoTextHover: #3384e8;
|
|
370
|
+
@colorInfoText: #0e5fd1;
|
|
371
|
+
@colorInfoTextActive: #0f4da4;
|
|
372
|
+
@colorLinkHover: #113c78;
|
|
373
|
+
@colorLinkActive: #0f4da4;
|
|
374
374
|
@colorBgMask: rgba(0,0,0,0.45);
|
|
375
375
|
@colorWhite: #fff;
|
|
376
|
-
@fontSizeSM:
|
|
377
|
-
@fontSizeLG:
|
|
378
|
-
@fontSizeXL:
|
|
379
|
-
@fontSizeHeading1:
|
|
380
|
-
@fontSizeHeading2:
|
|
381
|
-
@fontSizeHeading3:
|
|
382
|
-
@fontSizeHeading4:
|
|
383
|
-
@fontSizeHeading5:
|
|
384
|
-
@lineHeight: 1.
|
|
385
|
-
@lineHeightLG: 1.
|
|
386
|
-
@lineHeightSM: 1.
|
|
387
|
-
@fontHeight:
|
|
388
|
-
@fontHeightLG:
|
|
389
|
-
@fontHeightSM:
|
|
390
|
-
@lineHeightHeading1: 1.
|
|
391
|
-
@lineHeightHeading2: 1.
|
|
392
|
-
@lineHeightHeading3: 1.
|
|
393
|
-
@lineHeightHeading4: 1.
|
|
394
|
-
@lineHeightHeading5: 1.
|
|
395
|
-
@sizeXXL:
|
|
396
|
-
@sizeXL:
|
|
397
|
-
@sizeLG:
|
|
398
|
-
@sizeMD:
|
|
399
|
-
@sizeMS:
|
|
400
|
-
@size:
|
|
401
|
-
@sizeSM:
|
|
402
|
-
@sizeXS:
|
|
403
|
-
@sizeXXS:
|
|
404
|
-
@controlHeightSM:
|
|
405
|
-
@controlHeightXS:
|
|
406
|
-
@controlHeightLG:
|
|
376
|
+
@fontSizeSM: 10px;
|
|
377
|
+
@fontSizeLG: 14px;
|
|
378
|
+
@fontSizeXL: 18px;
|
|
379
|
+
@fontSizeHeading1: 34px;
|
|
380
|
+
@fontSizeHeading2: 28px;
|
|
381
|
+
@fontSizeHeading3: 22px;
|
|
382
|
+
@fontSizeHeading4: 18px;
|
|
383
|
+
@fontSizeHeading5: 14px;
|
|
384
|
+
@lineHeight: 1.6153846153846154;
|
|
385
|
+
@lineHeightLG: 1.5714285714285714;
|
|
386
|
+
@lineHeightSM: 1.8;
|
|
387
|
+
@fontHeight: 21px;
|
|
388
|
+
@fontHeightLG: 22px;
|
|
389
|
+
@fontHeightSM: 18px;
|
|
390
|
+
@lineHeightHeading1: 1.2352941176470589;
|
|
391
|
+
@lineHeightHeading2: 1.2857142857142858;
|
|
392
|
+
@lineHeightHeading3: 1.3636363636363635;
|
|
393
|
+
@lineHeightHeading4: 1.4444444444444444;
|
|
394
|
+
@lineHeightHeading5: 1.5714285714285714;
|
|
395
|
+
@sizeXXL: 48px;
|
|
396
|
+
@sizeXL: 32px;
|
|
397
|
+
@sizeLG: 24px;
|
|
398
|
+
@sizeMD: 20px;
|
|
399
|
+
@sizeMS: 16px;
|
|
400
|
+
@size: 16px;
|
|
401
|
+
@sizeSM: 12px;
|
|
402
|
+
@sizeXS: 8px;
|
|
403
|
+
@sizeXXS: 4px;
|
|
404
|
+
@controlHeightSM: 24px;
|
|
405
|
+
@controlHeightXS: 16px;
|
|
406
|
+
@controlHeightLG: 40px;
|
|
407
407
|
@motionDurationFast: 0.1s;
|
|
408
408
|
@motionDurationMid: 0.2s;
|
|
409
409
|
@motionDurationSlow: 0.3s;
|
|
410
|
-
@lineWidthBold:
|
|
411
|
-
@borderRadiusXS:
|
|
412
|
-
@borderRadiusSM:
|
|
413
|
-
@borderRadiusLG:
|
|
414
|
-
@borderRadiusOuter:
|
|
410
|
+
@lineWidthBold: 2px;
|
|
411
|
+
@borderRadiusXS: 1px;
|
|
412
|
+
@borderRadiusSM: 4px;
|
|
413
|
+
@borderRadiusLG: 4px;
|
|
414
|
+
@borderRadiusOuter: 4px;
|
|
415
415
|
@colorFillContent: rgba(255,255,255,0.12);
|
|
416
416
|
@colorFillContentHover: rgba(255,255,255,0.18);
|
|
417
417
|
@colorFillAlter: rgba(255,255,255,0.04);
|
|
@@ -431,44 +431,44 @@
|
|
|
431
431
|
@colorIconHover: rgba(255,255,255,0.85);
|
|
432
432
|
@colorErrorOutline: rgba(250,20,40,0.1);
|
|
433
433
|
@colorWarningOutline: rgba(180,93,0,0.15);
|
|
434
|
-
@fontSizeIcon:
|
|
435
|
-
@lineWidthFocus:
|
|
436
|
-
@controlOutlineWidth:
|
|
437
|
-
@controlInteractiveSize:
|
|
434
|
+
@fontSizeIcon: 10px;
|
|
435
|
+
@lineWidthFocus: 3px;
|
|
436
|
+
@controlOutlineWidth: 2px;
|
|
437
|
+
@controlInteractiveSize: 16px;
|
|
438
438
|
@controlItemBgHover: rgba(255,255,255,0.08);
|
|
439
|
-
@controlItemBgActive: #
|
|
440
|
-
@controlItemBgActiveHover: #
|
|
439
|
+
@controlItemBgActive: #122e57;
|
|
440
|
+
@controlItemBgActiveHover: #113c78;
|
|
441
441
|
@controlItemBgActiveDisabled: rgba(255,255,255,0.18);
|
|
442
442
|
@controlTmpOutline: rgba(255,255,255,0.04);
|
|
443
|
-
@controlOutline: rgba(
|
|
443
|
+
@controlOutline: rgba(13,110,251,0.29);
|
|
444
444
|
@fontWeightStrong: 600;
|
|
445
445
|
@opacityLoading: 0.65;
|
|
446
446
|
@linkDecoration: none;
|
|
447
447
|
@linkHoverDecoration: none;
|
|
448
448
|
@linkFocusDecoration: none;
|
|
449
|
-
@controlPaddingHorizontal:
|
|
450
|
-
@controlPaddingHorizontalSM:
|
|
451
|
-
@paddingXXS:
|
|
452
|
-
@paddingXS:
|
|
453
|
-
@paddingSM:
|
|
454
|
-
@padding:
|
|
455
|
-
@paddingMD:
|
|
456
|
-
@paddingLG:
|
|
457
|
-
@paddingXL:
|
|
458
|
-
@paddingContentHorizontalLG:
|
|
459
|
-
@paddingContentVerticalLG:
|
|
460
|
-
@paddingContentHorizontal:
|
|
461
|
-
@paddingContentVertical:
|
|
462
|
-
@paddingContentHorizontalSM:
|
|
463
|
-
@paddingContentVerticalSM:
|
|
464
|
-
@marginXXS:
|
|
465
|
-
@marginXS:
|
|
466
|
-
@marginSM:
|
|
467
|
-
@margin:
|
|
468
|
-
@marginMD:
|
|
469
|
-
@marginLG:
|
|
470
|
-
@marginXL:
|
|
471
|
-
@marginXXL:
|
|
449
|
+
@controlPaddingHorizontal: 12px;
|
|
450
|
+
@controlPaddingHorizontalSM: 8px;
|
|
451
|
+
@paddingXXS: 4px;
|
|
452
|
+
@paddingXS: 8px;
|
|
453
|
+
@paddingSM: 12px;
|
|
454
|
+
@padding: 16px;
|
|
455
|
+
@paddingMD: 20px;
|
|
456
|
+
@paddingLG: 24px;
|
|
457
|
+
@paddingXL: 32px;
|
|
458
|
+
@paddingContentHorizontalLG: 24px;
|
|
459
|
+
@paddingContentVerticalLG: 16px;
|
|
460
|
+
@paddingContentHorizontal: 16px;
|
|
461
|
+
@paddingContentVertical: 12px;
|
|
462
|
+
@paddingContentHorizontalSM: 16px;
|
|
463
|
+
@paddingContentVerticalSM: 8px;
|
|
464
|
+
@marginXXS: 4px;
|
|
465
|
+
@marginXS: 8px;
|
|
466
|
+
@marginSM: 12px;
|
|
467
|
+
@margin: 16px;
|
|
468
|
+
@marginMD: 20px;
|
|
469
|
+
@marginLG: 24px;
|
|
470
|
+
@marginXL: 32px;
|
|
471
|
+
@marginXXL: 48px;
|
|
472
472
|
@boxShadow:
|
|
473
473
|
0 6px 16px 0 rgba(0, 0, 0, 0.08),
|
|
474
474
|
0 3px 6px -4px rgba(0, 0, 0, 0.12),
|
|
@@ -484,23 +484,23 @@
|
|
|
484
484
|
0 1px 6px -1px rgba(0, 0, 0, 0.02),
|
|
485
485
|
0 2px 4px 0 rgba(0, 0, 0, 0.02)
|
|
486
486
|
;
|
|
487
|
-
@screenXS:
|
|
488
|
-
@screenXSMin:
|
|
489
|
-
@screenXSMax:
|
|
490
|
-
@screenSM:
|
|
491
|
-
@screenSMMin:
|
|
492
|
-
@screenSMMax:
|
|
493
|
-
@screenMD:
|
|
494
|
-
@screenMDMin:
|
|
495
|
-
@screenMDMax:
|
|
496
|
-
@screenLG:
|
|
497
|
-
@screenLGMin:
|
|
498
|
-
@screenLGMax:
|
|
499
|
-
@screenXL:
|
|
500
|
-
@screenXLMin:
|
|
501
|
-
@screenXLMax:
|
|
502
|
-
@screenXXL:
|
|
503
|
-
@screenXXLMin:
|
|
487
|
+
@screenXS: 480px;
|
|
488
|
+
@screenXSMin: 480px;
|
|
489
|
+
@screenXSMax: 575px;
|
|
490
|
+
@screenSM: 576px;
|
|
491
|
+
@screenSMMin: 576px;
|
|
492
|
+
@screenSMMax: 767px;
|
|
493
|
+
@screenMD: 768px;
|
|
494
|
+
@screenMDMin: 768px;
|
|
495
|
+
@screenMDMax: 991px;
|
|
496
|
+
@screenLG: 992px;
|
|
497
|
+
@screenLGMin: 992px;
|
|
498
|
+
@screenLGMax: 1199px;
|
|
499
|
+
@screenXL: 1200px;
|
|
500
|
+
@screenXLMin: 1200px;
|
|
501
|
+
@screenXLMax: 1599px;
|
|
502
|
+
@screenXXL: 1600px;
|
|
503
|
+
@screenXXLMin: 1600px;
|
|
504
504
|
@boxShadowPopoverArrow: 2px 2px 5px rgba(0, 0, 0, 0.05);
|
|
505
505
|
@boxShadowCard:
|
|
506
506
|
0 1px 2px -2px rgba(0,0,0,0.16),
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@blue: #
|
|
1
|
+
@blue: #0d6cf2;
|
|
2
2
|
@purple: #722ED1;
|
|
3
3
|
@cyan: #13C2C2;
|
|
4
4
|
@green: #0ac185;
|
|
@@ -11,21 +11,21 @@
|
|
|
11
11
|
@geekblue: #2F54EB;
|
|
12
12
|
@gold: #FAAD14;
|
|
13
13
|
@lime: #A0D911;
|
|
14
|
-
@colorPrimary: #
|
|
14
|
+
@colorPrimary: #0d6cf2;
|
|
15
15
|
@colorSuccess: #0ac185;
|
|
16
16
|
@colorWarning: #ffa21a;
|
|
17
17
|
@colorError: #f93939;
|
|
18
|
-
@colorInfo: #
|
|
19
|
-
@colorLink: #
|
|
18
|
+
@colorInfo: #0d6cf2;
|
|
19
|
+
@colorLink: #0d6cf2;
|
|
20
20
|
@colorTextBase: #000000;
|
|
21
21
|
@colorBgBase: #ffffff;
|
|
22
22
|
@fontFamily: -apple-system, 'Noto Sans', BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
23
23
|
@fontFamilyCode: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
24
|
-
@fontSize:
|
|
25
|
-
@lineWidth:
|
|
24
|
+
@fontSize: 13px;
|
|
25
|
+
@lineWidth: 1px;
|
|
26
26
|
@lineType: solid;
|
|
27
|
-
@motionUnit: 0.
|
|
28
|
-
@motionBase:
|
|
27
|
+
@motionUnit: 0.1s;
|
|
28
|
+
@motionBase: 0s;
|
|
29
29
|
@motionEaseOutCirc: cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
30
30
|
@motionEaseInOutCirc: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
31
31
|
@motionEaseOut: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
@motionEaseInBack: cubic-bezier(0.71, -0.46, 0.88, 0.6);
|
|
35
35
|
@motionEaseInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
36
36
|
@motionEaseOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
|
|
37
|
-
@borderRadius:
|
|
38
|
-
@sizeUnit:
|
|
39
|
-
@sizeStep:
|
|
40
|
-
@sizePopupArrow:
|
|
41
|
-
@controlHeight:
|
|
37
|
+
@borderRadius: 4px;
|
|
38
|
+
@sizeUnit: 4px;
|
|
39
|
+
@sizeStep: 4px;
|
|
40
|
+
@sizePopupArrow: 16px;
|
|
41
|
+
@controlHeight: 32px;
|
|
42
42
|
@zIndexBase: 0;
|
|
43
43
|
@zIndexPopupBase: 1000;
|
|
44
44
|
@opacityImage: 1;
|
|
@@ -46,24 +46,24 @@
|
|
|
46
46
|
@motion: true;
|
|
47
47
|
@blue-1: #e6f4ff;
|
|
48
48
|
@blue1: #e6f4ff;
|
|
49
|
-
@blue-2: #
|
|
50
|
-
@blue2: #
|
|
51
|
-
@blue-3: #
|
|
52
|
-
@blue3: #
|
|
53
|
-
@blue-4: #
|
|
54
|
-
@blue4: #
|
|
55
|
-
@blue-5: #
|
|
56
|
-
@blue5: #
|
|
57
|
-
@blue-6: #
|
|
58
|
-
@blue6: #
|
|
59
|
-
@blue-7: #
|
|
60
|
-
@blue7: #
|
|
61
|
-
@blue-8: #
|
|
62
|
-
@blue8: #
|
|
63
|
-
@blue-9: #
|
|
64
|
-
@blue9: #
|
|
65
|
-
@blue-10: #
|
|
66
|
-
@blue10: #
|
|
49
|
+
@blue-2: #b0dbff;
|
|
50
|
+
@blue2: #b0dbff;
|
|
51
|
+
@blue-3: #87c5ff;
|
|
52
|
+
@blue3: #87c5ff;
|
|
53
|
+
@blue-4: #5eacff;
|
|
54
|
+
@blue4: #5eacff;
|
|
55
|
+
@blue-5: #3690ff;
|
|
56
|
+
@blue5: #3690ff;
|
|
57
|
+
@blue-6: #0d6cf2;
|
|
58
|
+
@blue6: #0d6cf2;
|
|
59
|
+
@blue-7: #004ecc;
|
|
60
|
+
@blue7: #004ecc;
|
|
61
|
+
@blue-8: #003aa6;
|
|
62
|
+
@blue8: #003aa6;
|
|
63
|
+
@blue-9: #002880;
|
|
64
|
+
@blue9: #002880;
|
|
65
|
+
@blue-10: #001959;
|
|
66
|
+
@blue10: #001959;
|
|
67
67
|
@purple-1: #f9f0ff;
|
|
68
68
|
@purple1: #f9f0ff;
|
|
69
69
|
@purple-2: #efdbff;
|
|
@@ -315,22 +315,22 @@
|
|
|
315
315
|
@colorBgSolid: rgb(0,0,0);
|
|
316
316
|
@colorBgSolidHover: rgba(0,0,0,0.75);
|
|
317
317
|
@colorBgSolidActive: rgba(0,0,0,0.95);
|
|
318
|
-
@colorBgLayout: #
|
|
318
|
+
@colorBgLayout: #f8fafe;
|
|
319
319
|
@colorBgContainer: #ffffff;
|
|
320
320
|
@colorBgElevated: #ffffff;
|
|
321
321
|
@colorBgSpotlight: #ffffff;
|
|
322
322
|
@colorBgBlur: transparent;
|
|
323
323
|
@colorBorder: #cdd5e4;
|
|
324
324
|
@colorBorderSecondary: #e2e8f3;
|
|
325
|
-
@colorPrimaryBg: #
|
|
326
|
-
@colorPrimaryBgHover: #
|
|
327
|
-
@colorPrimaryBorder: #
|
|
328
|
-
@colorPrimaryBorderHover: #
|
|
329
|
-
@colorPrimaryHover: #
|
|
330
|
-
@colorPrimaryActive: #
|
|
331
|
-
@colorPrimaryTextHover: #
|
|
332
|
-
@colorPrimaryText: #
|
|
333
|
-
@colorPrimaryTextActive: #
|
|
325
|
+
@colorPrimaryBg: #e6f4ff;
|
|
326
|
+
@colorPrimaryBgHover: #b0dbff;
|
|
327
|
+
@colorPrimaryBorder: #87c5ff;
|
|
328
|
+
@colorPrimaryBorderHover: #5eacff;
|
|
329
|
+
@colorPrimaryHover: #3690ff;
|
|
330
|
+
@colorPrimaryActive: #004ecc;
|
|
331
|
+
@colorPrimaryTextHover: #3690ff;
|
|
332
|
+
@colorPrimaryText: #0d6cf2;
|
|
333
|
+
@colorPrimaryTextActive: #004ecc;
|
|
334
334
|
@colorSuccessBg: #eef8f5;
|
|
335
335
|
@colorSuccessBgHover: #dbf0e9;
|
|
336
336
|
@colorSuccessBorder: #b3e6d5;
|
|
@@ -360,62 +360,62 @@
|
|
|
360
360
|
@colorWarningTextHover: #ffc166;
|
|
361
361
|
@colorWarningText: #ffa21a;
|
|
362
362
|
@colorWarningTextActive: #ff9700;
|
|
363
|
-
@colorInfoBg: #
|
|
364
|
-
@colorInfoBgHover: #
|
|
365
|
-
@colorInfoBorder: #
|
|
366
|
-
@colorInfoBorderHover: #
|
|
367
|
-
@colorInfoHover: #
|
|
368
|
-
@colorInfoActive: #
|
|
369
|
-
@colorInfoTextHover: #
|
|
370
|
-
@colorInfoText: #
|
|
371
|
-
@colorInfoTextActive: #
|
|
372
|
-
@colorLinkHover: #
|
|
373
|
-
@colorLinkActive: #
|
|
363
|
+
@colorInfoBg: #e6f4ff;
|
|
364
|
+
@colorInfoBgHover: #b0dbff;
|
|
365
|
+
@colorInfoBorder: #87c5ff;
|
|
366
|
+
@colorInfoBorderHover: #5eacff;
|
|
367
|
+
@colorInfoHover: #5eacff;
|
|
368
|
+
@colorInfoActive: #004ecc;
|
|
369
|
+
@colorInfoTextHover: #3690ff;
|
|
370
|
+
@colorInfoText: #0d6cf2;
|
|
371
|
+
@colorInfoTextActive: #004ecc;
|
|
372
|
+
@colorLinkHover: #5eacff;
|
|
373
|
+
@colorLinkActive: #004ecc;
|
|
374
374
|
@colorBgMask: rgba(19, 32, 57, 0.45);
|
|
375
375
|
@colorWhite: #fff;
|
|
376
|
-
@fontSizeSM:
|
|
377
|
-
@fontSizeLG:
|
|
378
|
-
@fontSizeXL:
|
|
379
|
-
@fontSizeHeading1:
|
|
380
|
-
@fontSizeHeading2:
|
|
381
|
-
@fontSizeHeading3:
|
|
382
|
-
@fontSizeHeading4:
|
|
383
|
-
@fontSizeHeading5:
|
|
384
|
-
@lineHeight: 1.
|
|
385
|
-
@lineHeightLG: 1.
|
|
386
|
-
@lineHeightSM: 1.
|
|
387
|
-
@fontHeight:
|
|
388
|
-
@fontHeightLG:
|
|
389
|
-
@fontHeightSM:
|
|
390
|
-
@lineHeightHeading1: 1.
|
|
391
|
-
@lineHeightHeading2: 1.
|
|
392
|
-
@lineHeightHeading3: 1.
|
|
393
|
-
@lineHeightHeading4: 1.
|
|
394
|
-
@lineHeightHeading5: 1.
|
|
395
|
-
@sizeXXL:
|
|
396
|
-
@sizeXL:
|
|
397
|
-
@sizeLG:
|
|
398
|
-
@sizeMD:
|
|
399
|
-
@sizeMS:
|
|
400
|
-
@size:
|
|
401
|
-
@sizeSM:
|
|
402
|
-
@sizeXS:
|
|
403
|
-
@sizeXXS:
|
|
404
|
-
@controlHeightSM:
|
|
405
|
-
@controlHeightXS:
|
|
406
|
-
@controlHeightLG:
|
|
376
|
+
@fontSizeSM: 11px;
|
|
377
|
+
@fontSizeLG: 14px;
|
|
378
|
+
@fontSizeXL: 18px;
|
|
379
|
+
@fontSizeHeading1: 34px;
|
|
380
|
+
@fontSizeHeading2: 28px;
|
|
381
|
+
@fontSizeHeading3: 22px;
|
|
382
|
+
@fontSizeHeading4: 18px;
|
|
383
|
+
@fontSizeHeading5: 14px;
|
|
384
|
+
@lineHeight: 1.6153846153846154;
|
|
385
|
+
@lineHeightLG: 1.5714285714285714;
|
|
386
|
+
@lineHeightSM: 1.8;
|
|
387
|
+
@fontHeight: 21px;
|
|
388
|
+
@fontHeightLG: 22px;
|
|
389
|
+
@fontHeightSM: 18px;
|
|
390
|
+
@lineHeightHeading1: 1.2352941176470589;
|
|
391
|
+
@lineHeightHeading2: 1.2857142857142858;
|
|
392
|
+
@lineHeightHeading3: 1.3636363636363635;
|
|
393
|
+
@lineHeightHeading4: 1.4444444444444444;
|
|
394
|
+
@lineHeightHeading5: 1.5714285714285714;
|
|
395
|
+
@sizeXXL: 48px;
|
|
396
|
+
@sizeXL: 32px;
|
|
397
|
+
@sizeLG: 24px;
|
|
398
|
+
@sizeMD: 20px;
|
|
399
|
+
@sizeMS: 16px;
|
|
400
|
+
@size: 16px;
|
|
401
|
+
@sizeSM: 12px;
|
|
402
|
+
@sizeXS: 8px;
|
|
403
|
+
@sizeXXS: 4px;
|
|
404
|
+
@controlHeightSM: 24px;
|
|
405
|
+
@controlHeightXS: 16px;
|
|
406
|
+
@controlHeightLG: 40px;
|
|
407
407
|
@motionDurationFast: 0.1s;
|
|
408
408
|
@motionDurationMid: 0.2s;
|
|
409
409
|
@motionDurationSlow: 0.3s;
|
|
410
|
-
@lineWidthBold:
|
|
411
|
-
@borderRadiusXS:
|
|
412
|
-
@borderRadiusSM:
|
|
413
|
-
@borderRadiusLG:
|
|
414
|
-
@borderRadiusOuter:
|
|
410
|
+
@lineWidthBold: 2px;
|
|
411
|
+
@borderRadiusXS: 1px;
|
|
412
|
+
@borderRadiusSM: 2px;
|
|
413
|
+
@borderRadiusLG: 8px;
|
|
414
|
+
@borderRadiusOuter: 4px;
|
|
415
415
|
@boxShadow: 0 6px 16px 0 rgba(54, 69, 99, 0.08), 0 3px 6px -4px rgba(54, 69, 99, 0.12), 0 9px 28px 8px rgba(54, 69, 99, 0.05);
|
|
416
416
|
@boxShadowSecondary: 0 6px 16px 0 rgba(54, 69, 99, 0.08), 0 3px 6px -4px rgba(54, 69, 99, 0.12), 0 9px 28px 8px rgba(54, 69, 99, 0.05);
|
|
417
417
|
@boxShadowTertiary: 0 1px 2px 0 rgba(54, 69, 99, 0.03), 0 1px 6px -1px rgba(54, 69, 99, 0.02), 0 2px 4px 0 rgba(54, 69, 99, 0.02);
|
|
418
|
-
@lineWidthFocus:
|
|
418
|
+
@lineWidthFocus: 3px;
|
|
419
419
|
@colorFillContent: #e2e8f3;
|
|
420
420
|
@colorFillContentHover: #cdd5e4;
|
|
421
421
|
@colorFillAlter: #f8fafe;
|
|
@@ -435,60 +435,60 @@
|
|
|
435
435
|
@colorIconHover: #132039;
|
|
436
436
|
@colorErrorOutline: rgba(255,5,5,0.08);
|
|
437
437
|
@colorWarningOutline: rgba(255,164,19,0.11);
|
|
438
|
-
@fontSizeIcon:
|
|
439
|
-
@controlOutlineWidth:
|
|
440
|
-
@controlInteractiveSize:
|
|
438
|
+
@fontSizeIcon: 11px;
|
|
439
|
+
@controlOutlineWidth: 2px;
|
|
440
|
+
@controlInteractiveSize: 16px;
|
|
441
441
|
@controlItemBgHover: #f3f6fc;
|
|
442
|
-
@controlItemBgActive: #
|
|
443
|
-
@controlItemBgActiveHover: #
|
|
442
|
+
@controlItemBgActive: #e6f4ff;
|
|
443
|
+
@controlItemBgActiveHover: #b0dbff;
|
|
444
444
|
@controlItemBgActiveDisabled: #cdd5e4;
|
|
445
445
|
@controlTmpOutline: #f8fafe;
|
|
446
|
-
@controlOutline: rgba(
|
|
446
|
+
@controlOutline: rgba(5,145,255,0.1);
|
|
447
447
|
@fontWeightStrong: 600;
|
|
448
448
|
@opacityLoading: 0.65;
|
|
449
449
|
@linkDecoration: none;
|
|
450
450
|
@linkHoverDecoration: none;
|
|
451
451
|
@linkFocusDecoration: none;
|
|
452
|
-
@controlPaddingHorizontal:
|
|
453
|
-
@controlPaddingHorizontalSM:
|
|
454
|
-
@paddingXXS:
|
|
455
|
-
@paddingXS:
|
|
456
|
-
@paddingSM:
|
|
457
|
-
@padding:
|
|
458
|
-
@paddingMD:
|
|
459
|
-
@paddingLG:
|
|
460
|
-
@paddingXL:
|
|
461
|
-
@paddingContentHorizontalLG:
|
|
462
|
-
@paddingContentVerticalLG:
|
|
463
|
-
@paddingContentHorizontal:
|
|
464
|
-
@paddingContentVertical:
|
|
465
|
-
@paddingContentHorizontalSM:
|
|
466
|
-
@paddingContentVerticalSM:
|
|
467
|
-
@marginXXS:
|
|
468
|
-
@marginXS:
|
|
469
|
-
@marginSM:
|
|
470
|
-
@margin:
|
|
471
|
-
@marginMD:
|
|
472
|
-
@marginLG:
|
|
473
|
-
@marginXL:
|
|
474
|
-
@marginXXL:
|
|
475
|
-
@screenXS:
|
|
476
|
-
@screenXSMin:
|
|
477
|
-
@screenXSMax:
|
|
478
|
-
@screenSM:
|
|
479
|
-
@screenSMMin:
|
|
480
|
-
@screenSMMax:
|
|
481
|
-
@screenMD:
|
|
482
|
-
@screenMDMin:
|
|
483
|
-
@screenMDMax:
|
|
484
|
-
@screenLG:
|
|
485
|
-
@screenLGMin:
|
|
486
|
-
@screenLGMax:
|
|
487
|
-
@screenXL:
|
|
488
|
-
@screenXLMin:
|
|
489
|
-
@screenXLMax:
|
|
490
|
-
@screenXXL:
|
|
491
|
-
@screenXXLMin:
|
|
452
|
+
@controlPaddingHorizontal: 12px;
|
|
453
|
+
@controlPaddingHorizontalSM: 8px;
|
|
454
|
+
@paddingXXS: 4px;
|
|
455
|
+
@paddingXS: 8px;
|
|
456
|
+
@paddingSM: 12px;
|
|
457
|
+
@padding: 16px;
|
|
458
|
+
@paddingMD: 20px;
|
|
459
|
+
@paddingLG: 24px;
|
|
460
|
+
@paddingXL: 32px;
|
|
461
|
+
@paddingContentHorizontalLG: 24px;
|
|
462
|
+
@paddingContentVerticalLG: 16px;
|
|
463
|
+
@paddingContentHorizontal: 16px;
|
|
464
|
+
@paddingContentVertical: 12px;
|
|
465
|
+
@paddingContentHorizontalSM: 16px;
|
|
466
|
+
@paddingContentVerticalSM: 8px;
|
|
467
|
+
@marginXXS: 4px;
|
|
468
|
+
@marginXS: 8px;
|
|
469
|
+
@marginSM: 12px;
|
|
470
|
+
@margin: 16px;
|
|
471
|
+
@marginMD: 20px;
|
|
472
|
+
@marginLG: 24px;
|
|
473
|
+
@marginXL: 32px;
|
|
474
|
+
@marginXXL: 48px;
|
|
475
|
+
@screenXS: 480px;
|
|
476
|
+
@screenXSMin: 480px;
|
|
477
|
+
@screenXSMax: 575px;
|
|
478
|
+
@screenSM: 576px;
|
|
479
|
+
@screenSMMin: 576px;
|
|
480
|
+
@screenSMMax: 767px;
|
|
481
|
+
@screenMD: 768px;
|
|
482
|
+
@screenMDMin: 768px;
|
|
483
|
+
@screenMDMax: 991px;
|
|
484
|
+
@screenLG: 992px;
|
|
485
|
+
@screenLGMin: 992px;
|
|
486
|
+
@screenLGMax: 1199px;
|
|
487
|
+
@screenXL: 1200px;
|
|
488
|
+
@screenXLMin: 1200px;
|
|
489
|
+
@screenXLMax: 1599px;
|
|
490
|
+
@screenXXL: 1600px;
|
|
491
|
+
@screenXXLMin: 1600px;
|
|
492
492
|
@boxShadowPopoverArrow: 2px 2px 5px rgba(0, 0, 0, 0.05);
|
|
493
493
|
@boxShadowCard:
|
|
494
494
|
0 1px 2px -2px rgba(0,0,0,0.16),
|