@cmstops/pro-compo 0.1.64 → 0.1.66
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/index.css +13 -0
- package/dist/index.min.css +1 -1
- package/es/contentDetailList/__demo__/matrix/platform.d.ts +11 -2
- package/es/contentDetailList/component.js +12 -0
- package/es/contentDetailList/components/Content/DocItem/index.js +14 -1
- package/es/contentDetailList/components/Doc/index.js +6 -0
- package/es/contentDetailList/components/Records/MatrixItem/index.js +14 -12
- package/es/contentDetailList/style/MatrixItem.less +15 -0
- package/es/contentDetailList/style/index.css +9 -0
- package/es/contentModal/components/MpContentList/MediaFilter/index.js +83 -33
- package/es/contentModal/components/MpContentList/index.js +18 -4
- package/es/contentModal/components/ViewAllColumn/index.js +2 -1
- package/es/contentModal/style/MediaFilter.less +5 -0
- package/es/contentModal/style/index.css +4 -0
- package/es/index.css +13 -0
- package/lib/contentDetailList/component.js +12 -0
- package/lib/contentDetailList/components/Content/DocItem/index.js +14 -1
- package/lib/contentDetailList/components/Doc/index.js +6 -0
- package/lib/contentDetailList/components/Records/MatrixItem/index.js +13 -11
- package/lib/contentDetailList/style/MatrixItem.less +15 -0
- package/lib/contentDetailList/style/index.css +9 -0
- package/lib/contentModal/components/MpContentList/MediaFilter/index.js +81 -31
- package/lib/contentModal/components/MpContentList/index.js +16 -2
- package/lib/contentModal/components/ViewAllColumn/index.js +2 -1
- package/lib/contentModal/style/MediaFilter.less +5 -0
- package/lib/contentModal/style/index.css +4 -0
- package/lib/index.css +13 -0
- package/package.json +1 -1
package/lib/index.css
CHANGED
|
@@ -357,6 +357,10 @@
|
|
|
357
357
|
.media-filter-container .filter-item {
|
|
358
358
|
width: auto;
|
|
359
359
|
}
|
|
360
|
+
.media-filter-container :deep(.arco-popover-content) {
|
|
361
|
+
display: flex;
|
|
362
|
+
flex-direction: column;
|
|
363
|
+
}
|
|
360
364
|
.media-filter-container .reset-button {
|
|
361
365
|
width: 74px;
|
|
362
366
|
padding: 9px 12px;
|
|
@@ -3057,6 +3061,15 @@
|
|
|
3057
3061
|
border-radius: 50%;
|
|
3058
3062
|
content: '';
|
|
3059
3063
|
}
|
|
3064
|
+
.matrix-records-item-view .info-view .abttrite-v .left .state.p-state-2 {
|
|
3065
|
+
color: #4caf50;
|
|
3066
|
+
}
|
|
3067
|
+
.matrix-records-item-view .info-view .abttrite-v .left .state.m-state-0 {
|
|
3068
|
+
color: #4caf50;
|
|
3069
|
+
}
|
|
3070
|
+
.matrix-records-item-view .info-view .abttrite-v .left .state.m-state-1 {
|
|
3071
|
+
color: #ff9800;
|
|
3072
|
+
}
|
|
3060
3073
|
.matrix-records-item-view .info-view .abttrite-v .right {
|
|
3061
3074
|
margin-right: 20px;
|
|
3062
3075
|
}
|