@arco-themes/react-cecloud-tds-design 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +84 -0
- package/component.less +33 -0
- package/components/Alert/index.css +1 -0
- package/components/Alert/index.less +7 -0
- package/components/AutoComplete/index.css +0 -0
- package/components/AutoComplete/index.less +3 -0
- package/components/Button/index.css +1 -0
- package/components/Button/index.less +9 -0
- package/components/Cascader/index.css +1 -0
- package/components/Cascader/index.less +5 -0
- package/components/Checkbox/index.css +1 -0
- package/components/Checkbox/index.less +15 -0
- package/components/DatePicker/index.css +1 -0
- package/components/DatePicker/index.less +41 -0
- package/components/Descriptions/index.css +1 -0
- package/components/Descriptions/index.less +32 -0
- package/components/Drawer/index.css +1 -0
- package/components/Drawer/index.less +15 -0
- package/components/Empty/index.css +1 -0
- package/components/Empty/index.less +13 -0
- package/components/Form/index.css +1 -0
- package/components/Form/index.less +67 -0
- package/components/Input/index.css +1 -0
- package/components/Input/index.less +51 -0
- package/components/InputNumber/index.css +1 -0
- package/components/InputNumber/index.less +49 -0
- package/components/InputTag/index.css +1 -0
- package/components/InputTag/index.less +10 -0
- package/components/Link/index.css +1 -0
- package/components/Link/index.less +9 -0
- package/components/Menu/index.css +1 -0
- package/components/Menu/index.less +59 -0
- package/components/Message/index.css +1 -0
- package/components/Message/index.less +10 -0
- package/components/Modal/index.css +1 -0
- package/components/Modal/index.less +39 -0
- package/components/Pagination/index.css +1 -0
- package/components/Pagination/index.less +17 -0
- package/components/Progress/index.css +1 -0
- package/components/Progress/index.less +11 -0
- package/components/Radio/index.css +1 -0
- package/components/Radio/index.less +82 -0
- package/components/Select/index.css +0 -0
- package/components/Select/index.less +7 -0
- package/components/Slider/index.css +1 -0
- package/components/Slider/index.less +13 -0
- package/components/Spin/index.css +1 -0
- package/components/Spin/index.less +6 -0
- package/components/Switch/index.css +1 -0
- package/components/Switch/index.less +14 -0
- package/components/Table/index.css +1 -0
- package/components/Table/index.less +184 -0
- package/components/Tabs/index.css +1 -0
- package/components/Tabs/index.less +189 -0
- package/components/TimePicker/index.css +1 -0
- package/components/TimePicker/index.less +5 -0
- package/components/Tooltip/index.css +1 -0
- package/components/Tooltip/index.less +5 -0
- package/components/Transfer/index.css +1 -0
- package/components/Transfer/index.less +22 -0
- package/components/Tree/index.css +1 -0
- package/components/Tree/index.less +36 -0
- package/components/TreeSelect/index.css +1 -0
- package/components/TreeSelect/index.less +7 -0
- package/components/Upload/index.css +1 -0
- package/components/Upload/index.less +50 -0
- package/config.d.ts +5 -0
- package/config.js +6 -0
- package/css/arco.css +6 -0
- package/index.less +12 -0
- package/package.json +19 -0
- package/theme.css +637 -0
- package/theme.less +6542 -0
- package/tokens.less +4182 -0
- package/variables.less +2235 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.@{upload-prefix-cls} {
|
|
2
|
+
// icon颜色
|
|
3
|
+
&-list-item-done .arco-upload-list-file-icon, &-list-file-icon {
|
|
4
|
+
color: var(--color-text-3);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
// 未开始
|
|
8
|
+
&-list-item-init{
|
|
9
|
+
// 文字颜色
|
|
10
|
+
.arco-upload-list-item-text-name-text{
|
|
11
|
+
color: var(--color-text-2);
|
|
12
|
+
}
|
|
13
|
+
// 背景色
|
|
14
|
+
.arco-upload-list-item-text{
|
|
15
|
+
background-color: rgb(var(--primary-1));
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// 上传中
|
|
20
|
+
&-list-item-uploading{
|
|
21
|
+
.arco-upload-list-item-text-name-link{
|
|
22
|
+
color: rgb(var(--primary-6));
|
|
23
|
+
}
|
|
24
|
+
.arco-upload-list-item-text{
|
|
25
|
+
background-color: rgb(var(--primary-1));
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
// 上传成功
|
|
31
|
+
&-list-item-done{
|
|
32
|
+
.arco-upload-list-item-text-name-link{
|
|
33
|
+
color: rgb(var(--primary-6));
|
|
34
|
+
}
|
|
35
|
+
.arco-upload-list-item-text{
|
|
36
|
+
background-color: rgb(var(--success-1));
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// 上传失败
|
|
41
|
+
&-list-item-error{
|
|
42
|
+
.arco-upload-list-reupload-icon{
|
|
43
|
+
font-weight: 600;
|
|
44
|
+
}
|
|
45
|
+
.arco-upload-list-item-text{
|
|
46
|
+
background-color: rgb(var(--danger-1));
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
}
|
package/config.d.ts
ADDED