@jiaozhiye/qm-design-react 1.7.45 → 1.7.46
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/lib/form/src/types.d.ts +1 -0
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/style/index.css +16 -3
- package/lib/style/index.min.css +1 -1
- package/lib/upload-file/src/upload-file.d.ts +5 -0
- package/lib/upload-file/style/index.less +37 -18
- package/lib/upload-img/src/upload-img.d.ts +3 -0
- package/package.json +138 -138
package/lib/style/index.css
CHANGED
|
@@ -28392,9 +28392,22 @@ table {
|
|
|
28392
28392
|
* @Last Modified by: 焦质晔
|
|
28393
28393
|
* @Last Modified time: 2023-10-18 09:35:59
|
|
28394
28394
|
*/
|
|
28395
|
-
.qm-upload-file.
|
|
28396
|
-
|
|
28397
|
-
|
|
28395
|
+
.qm-upload-file .ant-upload-list .ant-upload-list-text-container {
|
|
28396
|
+
max-width: 100%;
|
|
28397
|
+
}
|
|
28398
|
+
.qm-upload-file .ant-upload-list .ant-upload-list-item {
|
|
28399
|
+
height: 30px;
|
|
28400
|
+
margin: 0;
|
|
28401
|
+
}
|
|
28402
|
+
.qm-upload-file--horizontal .ant-upload-list {
|
|
28403
|
+
display: flex;
|
|
28404
|
+
flex-wrap: wrap;
|
|
28405
|
+
}
|
|
28406
|
+
.qm-upload-file--lg .ant-upload-list .ant-upload-list-item {
|
|
28407
|
+
height: 38px;
|
|
28408
|
+
}
|
|
28409
|
+
.qm-upload-file--sm .ant-upload-list .ant-upload-list-item {
|
|
28410
|
+
height: 22px;
|
|
28398
28411
|
}
|
|
28399
28412
|
/*
|
|
28400
28413
|
* @Author: 焦质晔
|