@arco-themes/react-aiux2026 0.0.7 → 0.0.9
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/README.md +20 -0
- package/css/arco.css +2 -2
- package/package.json +2 -2
- package/theme.css +40 -0
- package/theme.less +379 -2
- package/tokens.less +134 -74
- package/variables.less +136 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arco-themes/react-aiux2026",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "dobe25381-gif",
|
|
6
6
|
"owners": [],
|
|
@@ -14,6 +14,6 @@
|
|
|
14
14
|
"depLibrary": "@arco-design/web-react",
|
|
15
15
|
"tag": "latest",
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@arco-design/web-react": "^2.66.
|
|
17
|
+
"@arco-design/web-react": "^2.66.12"
|
|
18
18
|
}
|
|
19
19
|
}
|
package/theme.css
CHANGED
|
@@ -313,6 +313,26 @@ body {
|
|
|
313
313
|
--warning-8: var(--orange-8);
|
|
314
314
|
--warning-9: var(--orange-9);
|
|
315
315
|
--warning-10: var(--orange-10);
|
|
316
|
+
--badge-1: 133, 24, 242;
|
|
317
|
+
--badge-2: 242, 24, 133;
|
|
318
|
+
--badge-3: 26, 188, 242;
|
|
319
|
+
--badge-4: 22, 217, 22;
|
|
320
|
+
--badge-5: 242, 79, 25;
|
|
321
|
+
--badge-6: 79, 24, 242;
|
|
322
|
+
--badge-7: 242, 188, 23;
|
|
323
|
+
--badge-8: var(--arcoblue-8);
|
|
324
|
+
--badge-9: var(--arcoblue-9);
|
|
325
|
+
--badge-10: var(--arcoblue-10);
|
|
326
|
+
--tag-1: 249, 237, 255;
|
|
327
|
+
--tag-2: 255, 237, 243;
|
|
328
|
+
--tag-3: 236, 253, 254;
|
|
329
|
+
--tag-4: 241, 255, 237;
|
|
330
|
+
--tag-5: 255, 245, 237;
|
|
331
|
+
--tag-6: 245, 237, 255;
|
|
332
|
+
--tag-7: 255, 253, 237;
|
|
333
|
+
--tag-8: var(--arcoblue-8);
|
|
334
|
+
--tag-9: var(--arcoblue-9);
|
|
335
|
+
--tag-10: var(--arcoblue-10);
|
|
316
336
|
}
|
|
317
337
|
body[arco-theme='dark'] {
|
|
318
338
|
--red-1: 77, 0, 10;
|
|
@@ -505,5 +525,25 @@ body[arco-theme='dark'] {
|
|
|
505
525
|
--warning-8: var(--orange-8);
|
|
506
526
|
--warning-9: var(--orange-9);
|
|
507
527
|
--warning-10: var(--orange-10);
|
|
528
|
+
--badge-1: var(--arcoblue-1);
|
|
529
|
+
--badge-2: var(--arcoblue-2);
|
|
530
|
+
--badge-3: var(--arcoblue-3);
|
|
531
|
+
--badge-4: var(--arcoblue-4);
|
|
532
|
+
--badge-5: var(--arcoblue-5);
|
|
533
|
+
--badge-6: var(--arcoblue-6);
|
|
534
|
+
--badge-7: var(--arcoblue-7);
|
|
535
|
+
--badge-8: var(--arcoblue-8);
|
|
536
|
+
--badge-9: var(--arcoblue-9);
|
|
537
|
+
--badge-10: var(--arcoblue-10);
|
|
538
|
+
--tag-1: var(--arcoblue-1);
|
|
539
|
+
--tag-2: var(--arcoblue-2);
|
|
540
|
+
--tag-3: var(--arcoblue-3);
|
|
541
|
+
--tag-4: var(--arcoblue-4);
|
|
542
|
+
--tag-5: var(--arcoblue-5);
|
|
543
|
+
--tag-6: var(--arcoblue-6);
|
|
544
|
+
--tag-7: var(--arcoblue-7);
|
|
545
|
+
--tag-8: var(--arcoblue-8);
|
|
546
|
+
--tag-9: var(--arcoblue-9);
|
|
547
|
+
--tag-10: var(--arcoblue-10);
|
|
508
548
|
}
|
|
509
549
|
|
package/theme.less
CHANGED
|
@@ -763,7 +763,7 @@
|
|
|
763
763
|
@transition-timing-function-decelerate: cubic-bezier(0.4, 0.8, 0.74, 1);
|
|
764
764
|
@transition-timing-function-accelerate: cubic-bezier(0.26, 0, 0.6, 0.2);
|
|
765
765
|
@icon-hover-border-radius: var(~'@{arco-cssvars-prefix}-border-radius-circle');
|
|
766
|
-
@icon-hover-color-bg: @color-
|
|
766
|
+
@icon-hover-color-bg: @color-transparent;
|
|
767
767
|
@icon-hover-size-default-height: 20px;
|
|
768
768
|
@icon-hover-size-small-height: 20px;
|
|
769
769
|
@icon-hover-size-mini-height: 20px;
|
|
@@ -806,6 +806,66 @@
|
|
|
806
806
|
@watermark-prefix-cls: ~'@{prefix}-watermark';
|
|
807
807
|
@verification-code-prefix-cls: ~'@{prefix}-verification-code';
|
|
808
808
|
@color-prefix-cls: ~'@{prefix}-color';
|
|
809
|
+
@badge-1: rgb(133, 24, 242);
|
|
810
|
+
@color-badge-5: rgb(var(~'@{arco-cssvars-prefix}-badge-5'));
|
|
811
|
+
@color-badge-4: rgb(var(~'@{arco-cssvars-prefix}-badge-4'));
|
|
812
|
+
@dark-badge-1: #000D4D;
|
|
813
|
+
@color-badge-2: rgb(var(~'@{arco-cssvars-prefix}-badge-2'));
|
|
814
|
+
@dark-badge-7: #689FFF;
|
|
815
|
+
@badge-4: rgb(22, 217, 22);
|
|
816
|
+
@color-badge-6: rgb(var(~'@{arco-cssvars-prefix}-badge-6'));
|
|
817
|
+
@badge-9: #031A79;
|
|
818
|
+
@dark-badge-5: #306FFF;
|
|
819
|
+
@dark-badge-2: #041B79;
|
|
820
|
+
@badge-6: rgb(79, 24, 242);
|
|
821
|
+
@badge-2: rgb(242, 24, 133);
|
|
822
|
+
@badge-3: rgb(26, 188, 242);
|
|
823
|
+
@color-badge-8: rgb(var(~'@{arco-cssvars-prefix}-badge-8'));
|
|
824
|
+
@color-badge-1: rgb(var(~'@{arco-cssvars-prefix}-badge-1'));
|
|
825
|
+
@color-badge-3: rgb(var(~'@{arco-cssvars-prefix}-badge-3'));
|
|
826
|
+
@badge-7: rgb(242, 188, 23);
|
|
827
|
+
@badge-8: #072CA6;
|
|
828
|
+
@color-badge-9: rgb(var(~'@{arco-cssvars-prefix}-badge-9'));
|
|
829
|
+
@dark-badge-4: #1D4DD2;
|
|
830
|
+
@color-badge-7: rgb(var(~'@{arco-cssvars-prefix}-badge-7'));
|
|
831
|
+
@color-badge-10: rgb(var(~'@{arco-cssvars-prefix}-badge-10'));
|
|
832
|
+
@dark-badge-8: #93BEFF;
|
|
833
|
+
@dark-badge-6: #3C7EFF;
|
|
834
|
+
@dark-badge-3: #0E32A6;
|
|
835
|
+
@dark-badge-9: #BEDAFF;
|
|
836
|
+
@dark-badge-10: #EAF4FF;
|
|
837
|
+
@badge-5: rgb(242, 79, 25);
|
|
838
|
+
@badge-10: #000D4D;
|
|
839
|
+
@tag-8: #072CA6;
|
|
840
|
+
@tag-3: rgb(236, 253, 254);
|
|
841
|
+
@color-tag-9: rgb(var(~'@{arco-cssvars-prefix}-tag-9'));
|
|
842
|
+
@color-tag-5: rgb(var(~'@{arco-cssvars-prefix}-tag-5'));
|
|
843
|
+
@dark-tag-1: #000D4D;
|
|
844
|
+
@dark-tag-2: #041B79;
|
|
845
|
+
@dark-tag-8: #93BEFF;
|
|
846
|
+
@tag-7: rgb(255, 253, 237);
|
|
847
|
+
@dark-tag-4: #1D4DD2;
|
|
848
|
+
@color-tag-6: rgb(var(~'@{arco-cssvars-prefix}-tag-6'));
|
|
849
|
+
@dark-tag-3: #0E32A6;
|
|
850
|
+
@dark-tag-9: #BEDAFF;
|
|
851
|
+
@tag-6: rgb(245, 237, 255);
|
|
852
|
+
@tag-4: rgb(241, 255, 237);
|
|
853
|
+
@color-tag-8: rgb(var(~'@{arco-cssvars-prefix}-tag-8'));
|
|
854
|
+
@tag-1: rgb(249, 237, 255);
|
|
855
|
+
@color-tag-2: rgb(var(~'@{arco-cssvars-prefix}-tag-2'));
|
|
856
|
+
@tag-2: rgb(255, 237, 243);
|
|
857
|
+
@color-tag-3: rgb(var(~'@{arco-cssvars-prefix}-tag-3'));
|
|
858
|
+
@tag-10: #000D4D;
|
|
859
|
+
@color-tag-4: rgb(var(~'@{arco-cssvars-prefix}-tag-4'));
|
|
860
|
+
@tag-9: #031A79;
|
|
861
|
+
@color-tag-1: rgb(var(~'@{arco-cssvars-prefix}-tag-1'));
|
|
862
|
+
@color-tag-7: rgb(var(~'@{arco-cssvars-prefix}-tag-7'));
|
|
863
|
+
@dark-tag-5: #306FFF;
|
|
864
|
+
@dark-tag-10: #EAF4FF;
|
|
865
|
+
@dark-tag-7: #689FFF;
|
|
866
|
+
@dark-tag-6: #3C7EFF;
|
|
867
|
+
@tag-5: rgb(255, 245, 237);
|
|
868
|
+
@color-tag-10: rgb(var(~'@{arco-cssvars-prefix}-tag-10'));
|
|
809
869
|
|
|
810
870
|
|
|
811
871
|
@arco-theme-tag: body;
|
|
@@ -1232,7 +1292,27 @@
|
|
|
1232
1292
|
@{arco-cssvars-prefix}-warning-9: if(iscolor(@warning-9), .getColorRgbStr(@warning-9)[], replace(~'@{warning-9}', 'rgb\((.*)\)$', '$1'));
|
|
1233
1293
|
@{arco-cssvars-prefix}-warning-10: if(iscolor(@warning-10), .getColorRgbStr(@warning-10)[], replace(~'@{warning-10}', 'rgb\((.*)\)$', '$1'));
|
|
1234
1294
|
|
|
1235
|
-
|
|
1295
|
+
@{arco-cssvars-prefix}-badge-1: if(iscolor(@badge-1), .getColorRgbStr(@badge-1)[], replace(~'@{badge-1}', 'rgb\((.*)\)$', '$1'));
|
|
1296
|
+
@{arco-cssvars-prefix}-badge-2: if(iscolor(@badge-2), .getColorRgbStr(@badge-2)[], replace(~'@{badge-2}', 'rgb\((.*)\)$', '$1'));
|
|
1297
|
+
@{arco-cssvars-prefix}-badge-3: if(iscolor(@badge-3), .getColorRgbStr(@badge-3)[], replace(~'@{badge-3}', 'rgb\((.*)\)$', '$1'));
|
|
1298
|
+
@{arco-cssvars-prefix}-badge-4: if(iscolor(@badge-4), .getColorRgbStr(@badge-4)[], replace(~'@{badge-4}', 'rgb\((.*)\)$', '$1'));
|
|
1299
|
+
@{arco-cssvars-prefix}-badge-5: if(iscolor(@badge-5), .getColorRgbStr(@badge-5)[], replace(~'@{badge-5}', 'rgb\((.*)\)$', '$1'));
|
|
1300
|
+
@{arco-cssvars-prefix}-badge-6: if(iscolor(@badge-6), .getColorRgbStr(@badge-6)[], replace(~'@{badge-6}', 'rgb\((.*)\)$', '$1'));
|
|
1301
|
+
@{arco-cssvars-prefix}-badge-7: if(iscolor(@badge-7), .getColorRgbStr(@badge-7)[], replace(~'@{badge-7}', 'rgb\((.*)\)$', '$1'));
|
|
1302
|
+
@{arco-cssvars-prefix}-badge-8: if(iscolor(@badge-8), .getColorRgbStr(@badge-8)[], replace(~'@{badge-8}', 'rgb\((.*)\)$', '$1'));
|
|
1303
|
+
@{arco-cssvars-prefix}-badge-9: if(iscolor(@badge-9), .getColorRgbStr(@badge-9)[], replace(~'@{badge-9}', 'rgb\((.*)\)$', '$1'));
|
|
1304
|
+
@{arco-cssvars-prefix}-badge-10: if(iscolor(@badge-10), .getColorRgbStr(@badge-10)[], replace(~'@{badge-10}', 'rgb\((.*)\)$', '$1'));
|
|
1305
|
+
@{arco-cssvars-prefix}-tag-1: if(iscolor(@tag-1), .getColorRgbStr(@tag-1)[], replace(~'@{tag-1}', 'rgb\((.*)\)$', '$1'));
|
|
1306
|
+
@{arco-cssvars-prefix}-tag-2: if(iscolor(@tag-2), .getColorRgbStr(@tag-2)[], replace(~'@{tag-2}', 'rgb\((.*)\)$', '$1'));
|
|
1307
|
+
@{arco-cssvars-prefix}-tag-3: if(iscolor(@tag-3), .getColorRgbStr(@tag-3)[], replace(~'@{tag-3}', 'rgb\((.*)\)$', '$1'));
|
|
1308
|
+
@{arco-cssvars-prefix}-tag-4: if(iscolor(@tag-4), .getColorRgbStr(@tag-4)[], replace(~'@{tag-4}', 'rgb\((.*)\)$', '$1'));
|
|
1309
|
+
@{arco-cssvars-prefix}-tag-5: if(iscolor(@tag-5), .getColorRgbStr(@tag-5)[], replace(~'@{tag-5}', 'rgb\((.*)\)$', '$1'));
|
|
1310
|
+
@{arco-cssvars-prefix}-tag-6: if(iscolor(@tag-6), .getColorRgbStr(@tag-6)[], replace(~'@{tag-6}', 'rgb\((.*)\)$', '$1'));
|
|
1311
|
+
@{arco-cssvars-prefix}-tag-7: if(iscolor(@tag-7), .getColorRgbStr(@tag-7)[], replace(~'@{tag-7}', 'rgb\((.*)\)$', '$1'));
|
|
1312
|
+
@{arco-cssvars-prefix}-tag-8: if(iscolor(@tag-8), .getColorRgbStr(@tag-8)[], replace(~'@{tag-8}', 'rgb\((.*)\)$', '$1'));
|
|
1313
|
+
@{arco-cssvars-prefix}-tag-9: if(iscolor(@tag-9), .getColorRgbStr(@tag-9)[], replace(~'@{tag-9}', 'rgb\((.*)\)$', '$1'));
|
|
1314
|
+
@{arco-cssvars-prefix}-tag-10: if(iscolor(@tag-10), .getColorRgbStr(@tag-10)[], replace(~'@{tag-10}', 'rgb\((.*)\)$', '$1'));
|
|
1315
|
+
|
|
1236
1316
|
}
|
|
1237
1317
|
|
|
1238
1318
|
@{arco-theme-tag}[arco-theme='dark'] {
|
|
@@ -1426,5 +1506,302 @@
|
|
|
1426
1506
|
@{arco-cssvars-prefix}-warning-8: if(iscolor(@dark-warning-8), .getColorRgbStr(@dark-warning-8)[], replace(~'@{dark-warning-8}', 'rgb\((.*)\)$', '$1'));
|
|
1427
1507
|
@{arco-cssvars-prefix}-warning-9: if(iscolor(@dark-warning-9), .getColorRgbStr(@dark-warning-9)[], replace(~'@{dark-warning-9}', 'rgb\((.*)\)$', '$1'));
|
|
1428
1508
|
@{arco-cssvars-prefix}-warning-10: if(iscolor(@dark-warning-10), .getColorRgbStr(@dark-warning-10)[], replace(~'@{dark-warning-10}', 'rgb\((.*)\)$', '$1'));
|
|
1509
|
+
@{arco-cssvars-prefix}-badge-1: if(iscolor(@dark-badge-1), .getColorRgbStr(@dark-badge-1)[], replace(~'@{dark-badge-1}', 'rgb\((.*)\)$', '$1'));
|
|
1510
|
+
@{arco-cssvars-prefix}-badge-2: if(iscolor(@dark-badge-2), .getColorRgbStr(@dark-badge-2)[], replace(~'@{dark-badge-2}', 'rgb\((.*)\)$', '$1'));
|
|
1511
|
+
@{arco-cssvars-prefix}-badge-3: if(iscolor(@dark-badge-3), .getColorRgbStr(@dark-badge-3)[], replace(~'@{dark-badge-3}', 'rgb\((.*)\)$', '$1'));
|
|
1512
|
+
@{arco-cssvars-prefix}-badge-4: if(iscolor(@dark-badge-4), .getColorRgbStr(@dark-badge-4)[], replace(~'@{dark-badge-4}', 'rgb\((.*)\)$', '$1'));
|
|
1513
|
+
@{arco-cssvars-prefix}-badge-5: if(iscolor(@dark-badge-5), .getColorRgbStr(@dark-badge-5)[], replace(~'@{dark-badge-5}', 'rgb\((.*)\)$', '$1'));
|
|
1514
|
+
@{arco-cssvars-prefix}-badge-6: if(iscolor(@dark-badge-6), .getColorRgbStr(@dark-badge-6)[], replace(~'@{dark-badge-6}', 'rgb\((.*)\)$', '$1'));
|
|
1515
|
+
@{arco-cssvars-prefix}-badge-7: if(iscolor(@dark-badge-7), .getColorRgbStr(@dark-badge-7)[], replace(~'@{dark-badge-7}', 'rgb\((.*)\)$', '$1'));
|
|
1516
|
+
@{arco-cssvars-prefix}-badge-8: if(iscolor(@dark-badge-8), .getColorRgbStr(@dark-badge-8)[], replace(~'@{dark-badge-8}', 'rgb\((.*)\)$', '$1'));
|
|
1517
|
+
@{arco-cssvars-prefix}-badge-9: if(iscolor(@dark-badge-9), .getColorRgbStr(@dark-badge-9)[], replace(~'@{dark-badge-9}', 'rgb\((.*)\)$', '$1'));
|
|
1518
|
+
@{arco-cssvars-prefix}-badge-10: if(iscolor(@dark-badge-10), .getColorRgbStr(@dark-badge-10)[], replace(~'@{dark-badge-10}', 'rgb\((.*)\)$', '$1'));
|
|
1519
|
+
@{arco-cssvars-prefix}-tag-1: if(iscolor(@dark-tag-1), .getColorRgbStr(@dark-tag-1)[], replace(~'@{dark-tag-1}', 'rgb\((.*)\)$', '$1'));
|
|
1520
|
+
@{arco-cssvars-prefix}-tag-2: if(iscolor(@dark-tag-2), .getColorRgbStr(@dark-tag-2)[], replace(~'@{dark-tag-2}', 'rgb\((.*)\)$', '$1'));
|
|
1521
|
+
@{arco-cssvars-prefix}-tag-3: if(iscolor(@dark-tag-3), .getColorRgbStr(@dark-tag-3)[], replace(~'@{dark-tag-3}', 'rgb\((.*)\)$', '$1'));
|
|
1522
|
+
@{arco-cssvars-prefix}-tag-4: if(iscolor(@dark-tag-4), .getColorRgbStr(@dark-tag-4)[], replace(~'@{dark-tag-4}', 'rgb\((.*)\)$', '$1'));
|
|
1523
|
+
@{arco-cssvars-prefix}-tag-5: if(iscolor(@dark-tag-5), .getColorRgbStr(@dark-tag-5)[], replace(~'@{dark-tag-5}', 'rgb\((.*)\)$', '$1'));
|
|
1524
|
+
@{arco-cssvars-prefix}-tag-6: if(iscolor(@dark-tag-6), .getColorRgbStr(@dark-tag-6)[], replace(~'@{dark-tag-6}', 'rgb\((.*)\)$', '$1'));
|
|
1525
|
+
@{arco-cssvars-prefix}-tag-7: if(iscolor(@dark-tag-7), .getColorRgbStr(@dark-tag-7)[], replace(~'@{dark-tag-7}', 'rgb\((.*)\)$', '$1'));
|
|
1526
|
+
@{arco-cssvars-prefix}-tag-8: if(iscolor(@dark-tag-8), .getColorRgbStr(@dark-tag-8)[], replace(~'@{dark-tag-8}', 'rgb\((.*)\)$', '$1'));
|
|
1527
|
+
@{arco-cssvars-prefix}-tag-9: if(iscolor(@dark-tag-9), .getColorRgbStr(@dark-tag-9)[], replace(~'@{dark-tag-9}', 'rgb\((.*)\)$', '$1'));
|
|
1528
|
+
@{arco-cssvars-prefix}-tag-10: if(iscolor(@dark-tag-10), .getColorRgbStr(@dark-tag-10)[], replace(~'@{dark-tag-10}', 'rgb\((.*)\)$', '$1'));
|
|
1529
|
+
|
|
1530
|
+
}
|
|
1531
|
+
// Button Icon
|
|
1532
|
+
.arco-btn-size-default {
|
|
1533
|
+
svg.arco-icon {
|
|
1534
|
+
font-size: 16px;
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
.arco-btn-size-large {
|
|
1538
|
+
svg.arco-icon {
|
|
1539
|
+
font-size: 16px;
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
|
+
.arco-btn-size-small {
|
|
1543
|
+
svg.arco-icon {
|
|
1544
|
+
font-size: 16px;
|
|
1545
|
+
}
|
|
1546
|
+
}
|
|
1547
|
+
.arco-btn-size-mini {
|
|
1548
|
+
svg.arco-icon {
|
|
1549
|
+
font-size: 14px;
|
|
1550
|
+
}
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
// Link
|
|
1554
|
+
.arco-link.arco-link-dark:not(:hover) {
|
|
1555
|
+
color: var(--color-text-2);
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
// Table remove border
|
|
1559
|
+
.arco-table.arco-table-border {
|
|
1560
|
+
.arco-table-container {
|
|
1561
|
+
border-top: none;
|
|
1562
|
+
}
|
|
1429
1563
|
|
|
1564
|
+
thead>.arco-table-tr>.arco-table-th {
|
|
1565
|
+
border: none;
|
|
1566
|
+
border-bottom: 1px solid var(--color-border-2);
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.arco-table-td:first-child {
|
|
1570
|
+
border-left: none;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.arco-table-container {
|
|
1574
|
+
border-right: none;
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
// tooltip
|
|
1579
|
+
.arco-tooltip-content {
|
|
1580
|
+
background-color: var(--color-bg-5);
|
|
1581
|
+
color: var(--color-text-2);
|
|
1582
|
+
border-width: 0 !important;
|
|
1583
|
+
box-shadow: 0 4px 12px 2px rgba(0, 0, 0, 0.1);
|
|
1584
|
+
padding: 8px 12px;
|
|
1585
|
+
font-size: 12px;
|
|
1586
|
+
border-radius: 4px;
|
|
1587
|
+
line-height: 1.5715;
|
|
1588
|
+
}
|
|
1589
|
+
.arco-tooltip .arco-trigger-arrow {
|
|
1590
|
+
z-index: 0;
|
|
1591
|
+
}
|
|
1592
|
+
.arco-trigger-arrow.arco-tooltip-arrow {
|
|
1593
|
+
background-color: var(--color-bg-5);
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
// Form required mark
|
|
1597
|
+
.arco-form-label-item .arco-form-item-symbol svg {
|
|
1598
|
+
margin-top: 2px;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
// Cascader Icon
|
|
1602
|
+
.arco-cascader.arco-cascader-size-default {
|
|
1603
|
+
.arco-cascader-suffix {
|
|
1604
|
+
svg.arco-icon {
|
|
1605
|
+
font-size: 16px
|
|
1606
|
+
}
|
|
1607
|
+
}
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
// Form Icon
|
|
1611
|
+
.arco-form.arco-form-size-default {
|
|
1612
|
+
.arco-form-item-feedback {
|
|
1613
|
+
svg.arco-icon {
|
|
1614
|
+
font-size: 16px;
|
|
1615
|
+
}
|
|
1616
|
+
}
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
// Input Icon
|
|
1620
|
+
.arco-input-inner-wrapper .arco-input-group-prefix > svg,
|
|
1621
|
+
.arco-input-inner-wrapper .arco-input-group-suffix > svg {
|
|
1622
|
+
font-size: 16px;
|
|
1623
|
+
}
|
|
1624
|
+
.arco-input-group-addbefore > svg, .arco-input-group-addafter > svg {
|
|
1625
|
+
font-size: 16px;
|
|
1626
|
+
}
|
|
1627
|
+
.arco-input-search.arco-input-group-wrapper .arco-input-search-btn > svg {
|
|
1628
|
+
font-size: 16px;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
// DataPicker Icon
|
|
1632
|
+
.arco-picker.arco-picker-size-default {
|
|
1633
|
+
.arco-picker-suffix>.arco-picker-suffix-icon>svg.arco-icon {
|
|
1634
|
+
font-size: 16px;
|
|
1635
|
+
}
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
// TimePicker Icon
|
|
1639
|
+
.arco-picker.arco-picker-size-default.arco-picker-has-prefix {
|
|
1640
|
+
.arco-picker-prefix {
|
|
1641
|
+
display: flex;
|
|
1642
|
+
align-items: center;
|
|
1643
|
+
|
|
1644
|
+
svg.arco-icon {
|
|
1645
|
+
font-size: 16px;
|
|
1646
|
+
}
|
|
1647
|
+
}
|
|
1648
|
+
.arco-picker-suffix {
|
|
1649
|
+
display: flex;
|
|
1650
|
+
align-items: center;
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
// TreeSelect
|
|
1655
|
+
.arco-tree-select {
|
|
1656
|
+
&.arco-tree-select-size-default {
|
|
1657
|
+
.arco-tree-select-suffix {
|
|
1658
|
+
.arco-tree-select-arrow-icon>svg.arco-icon {
|
|
1659
|
+
font-size: 16px;
|
|
1660
|
+
}
|
|
1661
|
+
}
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
|
+
&.arco-tree-select-size-mini {
|
|
1665
|
+
.arco-tree-select-suffix {
|
|
1666
|
+
.arco-tree-select-arrow-icon>svg.arco-icon {
|
|
1667
|
+
font-size: 14px;
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
// InputTag Icon
|
|
1674
|
+
.arco-input-tag.arco-input-tag-size-default {
|
|
1675
|
+
.arco-input-tag-tag>.arco-tag-close-btn>svg.arco-icon {
|
|
1676
|
+
font-size: 16px;
|
|
1677
|
+
}
|
|
1678
|
+
}
|
|
1679
|
+
.arco-input-tag.arco-input-tag-size-small {
|
|
1680
|
+
.arco-input-tag-tag>.arco-tag-close-btn>svg.arco-icon {
|
|
1681
|
+
font-size: 14px;
|
|
1682
|
+
}
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
// InputNumber Icon
|
|
1686
|
+
.arco-input-group-wrapper.arco-input-group-wrapper-default {
|
|
1687
|
+
.arco-input-number-step-button {
|
|
1688
|
+
font-size: 16px;
|
|
1689
|
+
}
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
// Select Icon
|
|
1693
|
+
.arco-select.arco-select-size-default {
|
|
1694
|
+
.arco-select-suffix {
|
|
1695
|
+
svg.arco-icon {
|
|
1696
|
+
font-size: 16px;
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
.arco-select.arco-select-size-mini {
|
|
1702
|
+
.arco-select-suffix {
|
|
1703
|
+
svg.arco-icon {
|
|
1704
|
+
font-size: 14px;
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
// Alert
|
|
1710
|
+
.arco-alert {
|
|
1711
|
+
display: flex;
|
|
1712
|
+
align-items: start;
|
|
1713
|
+
|
|
1714
|
+
.arco-alert-close-btn {
|
|
1715
|
+
margin-top:6px;
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
// TimePicker
|
|
1720
|
+
.arco-timepicker-cell:not(.arco-timepicker-cell-selected):not(.arco-timepicker-cell-disabled):hover .arco-timepicker-cell-inner {
|
|
1721
|
+
background-color: rgb(var(--primary-1));
|
|
1722
|
+
}
|
|
1723
|
+
.arco-timepicker-cell-selected:not(.arco-timepicker-cell-disabled) .arco-timepicker-cell-inner {
|
|
1724
|
+
background-color: rgb(var(--primary-1));
|
|
1725
|
+
color: rgb(var(--primary-6))
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
// Transfer
|
|
1729
|
+
.arco-transfer {
|
|
1730
|
+
.arco-transfer-view-header {
|
|
1731
|
+
border-radius: 4px;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.arco-transfer-operations {
|
|
1735
|
+
svg.arco-icon {
|
|
1736
|
+
font-size: 16px;
|
|
1737
|
+
}
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
.arco-transfer-view-header {
|
|
1741
|
+
.arco-transfer-view-icon-clear>svg.arco-icon {
|
|
1742
|
+
font-size: 16px;
|
|
1743
|
+
}
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
.arco-transfer-view-list {
|
|
1747
|
+
.arco-transfer-view-item {
|
|
1748
|
+
.arco-icon-hover.arco-checkbox-icon-hover::before {
|
|
1749
|
+
display: none;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
.arco-checkbox.arco-transfer-view-item-content:not(.arco-checkbox-checked) {
|
|
1753
|
+
&:hover {
|
|
1754
|
+
.arco-checkbox-mask {
|
|
1755
|
+
border-color: rgb(var(--primary-5))
|
|
1756
|
+
}
|
|
1757
|
+
}
|
|
1758
|
+
&:active {
|
|
1759
|
+
.arco-checkbox-mask {
|
|
1760
|
+
border-color: rgb(var(--primary-7))
|
|
1761
|
+
}
|
|
1762
|
+
}
|
|
1763
|
+
}
|
|
1764
|
+
}
|
|
1765
|
+
.arco-transfer-view-item-icon-remove {
|
|
1766
|
+
font-size: 16px;
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
.arco-transfer-view-search {
|
|
1771
|
+
.arco-input-has-suffix {
|
|
1772
|
+
.arco-input-group-suffix>svg.arco-icon {
|
|
1773
|
+
font-size: 16px;
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1776
|
+
}
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
// Pagination Simple
|
|
1780
|
+
.arco-pagination {
|
|
1781
|
+
.arco-pagination-item-simple-pager {
|
|
1782
|
+
margin-right: 4px;
|
|
1783
|
+
|
|
1784
|
+
.arco-input.arco-pagination-jumper-input {
|
|
1785
|
+
margin-right: 4px;
|
|
1786
|
+
border-radius: 4px;
|
|
1787
|
+
border: 1px solid var(--color-border-3);
|
|
1788
|
+
background: var(--color-bg-2);
|
|
1789
|
+
}
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
&.arco-pagination-size-small {
|
|
1793
|
+
.arco-pagination-item-simple-pager {
|
|
1794
|
+
.arco-input.arco-input-size-small.arco-pagination-jumper-input {
|
|
1795
|
+
width: 28px;
|
|
1796
|
+
}
|
|
1797
|
+
}
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
&.arco-pagination-size-mini {
|
|
1801
|
+
.arco-pagination-item-simple-pager {
|
|
1802
|
+
.arco-input.arco-input-size-mini.arco-pagination-jumper-input {
|
|
1803
|
+
width: 24px;
|
|
1804
|
+
}
|
|
1805
|
+
}
|
|
1430
1806
|
}
|
|
1807
|
+
}
|