@cmstops/pro-compo 0.1.19 → 0.1.20
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 +10 -11
- package/dist/index.min.css +1 -1
- package/es/contentDetailList/component.js +142 -51
- package/es/contentDetailList/components/Content/index.js +218 -239
- package/es/contentDetailList/components/Doc/index.js +24 -35
- package/es/contentDetailList/style/Content.less +1 -1
- package/es/contentDetailList/style/ContentListItem.less +1 -4
- package/es/contentDetailList/style/Doc.less +1 -5
- package/es/contentDetailList/style/DocItem.less +1 -0
- package/es/contentDetailList/style/index.css +10 -11
- package/es/index.css +10 -11
- package/lib/contentDetailList/component.js +145 -50
- package/lib/contentDetailList/components/Content/index.js +217 -242
- package/lib/contentDetailList/components/Doc/index.js +23 -34
- package/lib/contentDetailList/style/Content.less +1 -1
- package/lib/contentDetailList/style/ContentListItem.less +1 -4
- package/lib/contentDetailList/style/Doc.less +1 -5
- package/lib/contentDetailList/style/DocItem.less +1 -0
- package/lib/contentDetailList/style/index.css +10 -11
- package/lib/index.css +10 -11
- package/package.json +1 -1
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
.content-
|
|
1
|
+
.content-detail-list-container *::selection {
|
|
2
2
|
display: none;
|
|
3
3
|
}
|
|
4
|
-
.content-
|
|
4
|
+
.content-detail-list-container .fix_position {
|
|
5
5
|
position: relative;
|
|
6
6
|
margin-right: 10px;
|
|
7
7
|
color: #4886ff;
|
|
8
8
|
}
|
|
9
|
-
.content-
|
|
9
|
+
.content-detail-list-container .fix_position .doc-fixed-num {
|
|
10
10
|
position: absolute;
|
|
11
11
|
right: -7px;
|
|
12
12
|
bottom: 0;
|
|
13
13
|
color: #bababa;
|
|
14
14
|
font-size: 12px;
|
|
15
15
|
}
|
|
16
|
-
.content-
|
|
16
|
+
.content-detail-list-container .index {
|
|
17
17
|
display: inline-block;
|
|
18
18
|
flex-shrink: 0;
|
|
19
19
|
box-sizing: border-box;
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
background: #edf3ff;
|
|
29
29
|
border-radius: 3px;
|
|
30
30
|
}
|
|
31
|
-
.content-
|
|
32
|
-
.content-
|
|
31
|
+
.content-detail-list-container .d_time,
|
|
32
|
+
.content-detail-list-container .add_new {
|
|
33
33
|
margin: 0;
|
|
34
34
|
margin-right: 10px;
|
|
35
35
|
font-size: 14px;
|
|
36
36
|
vertical-align: middle;
|
|
37
37
|
}
|
|
38
|
-
.content-
|
|
38
|
+
.content-detail-list-container .d_time {
|
|
39
39
|
color: #7da8ff;
|
|
40
40
|
}
|
|
41
41
|
.medialist-component-item-view {
|
|
@@ -157,6 +157,7 @@
|
|
|
157
157
|
padding: 2px 0;
|
|
158
158
|
}
|
|
159
159
|
.medialist-component-item-view .info-view .title {
|
|
160
|
+
width: calc(100% - 50px);
|
|
160
161
|
display: flex;
|
|
161
162
|
align-items: center;
|
|
162
163
|
margin-bottom: 10px;
|
|
@@ -534,12 +535,9 @@
|
|
|
534
535
|
.medialist-account-item-view .info-view .abttrite-v .right {
|
|
535
536
|
margin-right: 20px;
|
|
536
537
|
}
|
|
537
|
-
.
|
|
538
|
+
.content-detail-list-container {
|
|
538
539
|
width: 100%;
|
|
539
540
|
}
|
|
540
|
-
.media-common-detail-list-container .data-ul {
|
|
541
|
-
height: 100%;
|
|
542
|
-
}
|
|
543
541
|
.medialist-doc-item-view {
|
|
544
542
|
display: flex;
|
|
545
543
|
padding: 10px;
|
|
@@ -588,6 +586,7 @@
|
|
|
588
586
|
padding: 2px 0;
|
|
589
587
|
}
|
|
590
588
|
.medialist-doc-item-view .info-view .title {
|
|
589
|
+
width: calc(100% - 50px);
|
|
591
590
|
display: flex;
|
|
592
591
|
align-items: center;
|
|
593
592
|
margin-bottom: 10px;
|
package/lib/index.css
CHANGED
|
@@ -1771,22 +1771,22 @@
|
|
|
1771
1771
|
white-space: nowrap;
|
|
1772
1772
|
text-overflow: ellipsis;
|
|
1773
1773
|
}
|
|
1774
|
-
.content-
|
|
1774
|
+
.content-detail-list-container *::selection {
|
|
1775
1775
|
display: none;
|
|
1776
1776
|
}
|
|
1777
|
-
.content-
|
|
1777
|
+
.content-detail-list-container .fix_position {
|
|
1778
1778
|
position: relative;
|
|
1779
1779
|
margin-right: 10px;
|
|
1780
1780
|
color: #4886ff;
|
|
1781
1781
|
}
|
|
1782
|
-
.content-
|
|
1782
|
+
.content-detail-list-container .fix_position .doc-fixed-num {
|
|
1783
1783
|
position: absolute;
|
|
1784
1784
|
right: -7px;
|
|
1785
1785
|
bottom: 0;
|
|
1786
1786
|
color: #bababa;
|
|
1787
1787
|
font-size: 12px;
|
|
1788
1788
|
}
|
|
1789
|
-
.content-
|
|
1789
|
+
.content-detail-list-container .index {
|
|
1790
1790
|
display: inline-block;
|
|
1791
1791
|
flex-shrink: 0;
|
|
1792
1792
|
box-sizing: border-box;
|
|
@@ -1801,14 +1801,14 @@
|
|
|
1801
1801
|
background: #edf3ff;
|
|
1802
1802
|
border-radius: 3px;
|
|
1803
1803
|
}
|
|
1804
|
-
.content-
|
|
1805
|
-
.content-
|
|
1804
|
+
.content-detail-list-container .d_time,
|
|
1805
|
+
.content-detail-list-container .add_new {
|
|
1806
1806
|
margin: 0;
|
|
1807
1807
|
margin-right: 10px;
|
|
1808
1808
|
font-size: 14px;
|
|
1809
1809
|
vertical-align: middle;
|
|
1810
1810
|
}
|
|
1811
|
-
.content-
|
|
1811
|
+
.content-detail-list-container .d_time {
|
|
1812
1812
|
color: #7da8ff;
|
|
1813
1813
|
}
|
|
1814
1814
|
.medialist-component-item-view {
|
|
@@ -1930,6 +1930,7 @@
|
|
|
1930
1930
|
padding: 2px 0;
|
|
1931
1931
|
}
|
|
1932
1932
|
.medialist-component-item-view .info-view .title {
|
|
1933
|
+
width: calc(100% - 50px);
|
|
1933
1934
|
display: flex;
|
|
1934
1935
|
align-items: center;
|
|
1935
1936
|
margin-bottom: 10px;
|
|
@@ -2307,12 +2308,9 @@
|
|
|
2307
2308
|
.medialist-account-item-view .info-view .abttrite-v .right {
|
|
2308
2309
|
margin-right: 20px;
|
|
2309
2310
|
}
|
|
2310
|
-
.
|
|
2311
|
+
.content-detail-list-container {
|
|
2311
2312
|
width: 100%;
|
|
2312
2313
|
}
|
|
2313
|
-
.media-common-detail-list-container .data-ul {
|
|
2314
|
-
height: 100%;
|
|
2315
|
-
}
|
|
2316
2314
|
.medialist-doc-item-view {
|
|
2317
2315
|
display: flex;
|
|
2318
2316
|
padding: 10px;
|
|
@@ -2361,6 +2359,7 @@
|
|
|
2361
2359
|
padding: 2px 0;
|
|
2362
2360
|
}
|
|
2363
2361
|
.medialist-doc-item-view .info-view .title {
|
|
2362
|
+
width: calc(100% - 50px);
|
|
2364
2363
|
display: flex;
|
|
2365
2364
|
align-items: center;
|
|
2366
2365
|
margin-bottom: 10px;
|