adtec-core-package 2.9.3 → 2.9.4
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/package.json
CHANGED
|
@@ -79,6 +79,37 @@
|
|
|
79
79
|
overflow-x: scroll;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
+
/* 仅显示外层滚动条:鼠标进入表格显示,移出隐藏 */
|
|
83
|
+
.vxe-table--scroll-x-handle,
|
|
84
|
+
.vxe-table--scroll-y-handle {
|
|
85
|
+
scrollbar-width: none;
|
|
86
|
+
-ms-overflow-style: none;
|
|
87
|
+
&::-webkit-scrollbar {
|
|
88
|
+
width: 8px;
|
|
89
|
+
height: 8px;
|
|
90
|
+
background: transparent;
|
|
91
|
+
}
|
|
92
|
+
&::-webkit-scrollbar-thumb {
|
|
93
|
+
background: transparent;
|
|
94
|
+
border-radius: 4px;
|
|
95
|
+
}
|
|
96
|
+
&::-webkit-scrollbar-track {
|
|
97
|
+
background: transparent;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.vxe-table:hover {
|
|
102
|
+
.vxe-table--scroll-x-handle,
|
|
103
|
+
.vxe-table--scroll-y-handle {
|
|
104
|
+
scrollbar-width: thin;
|
|
105
|
+
scrollbar-color: #DDDEE0 transparent;
|
|
106
|
+
}
|
|
107
|
+
.vxe-table--scroll-x-handle::-webkit-scrollbar-thumb,
|
|
108
|
+
.vxe-table--scroll-y-handle::-webkit-scrollbar-thumb {
|
|
109
|
+
background: #DDDEE0;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
82
113
|
.vxe-loading--custom-wrapper {
|
|
83
114
|
display: none;
|
|
84
115
|
position: absolute;
|
|
@@ -573,10 +604,10 @@
|
|
|
573
604
|
}
|
|
574
605
|
}
|
|
575
606
|
.vxe-table--scroll-x-virtual {
|
|
576
|
-
height: 0;
|
|
607
|
+
height: 0 !important;
|
|
577
608
|
}
|
|
578
609
|
.vxe-table--scroll-y-virtual {
|
|
579
|
-
width:
|
|
610
|
+
width: 0px !important;
|
|
580
611
|
}
|
|
581
612
|
.vxe-table--scroll-x-virtual,
|
|
582
613
|
.vxe-table--scroll-y-virtual {
|
|
@@ -604,10 +635,10 @@
|
|
|
604
635
|
.vxe-table--scroll-x-handle {
|
|
605
636
|
overflow-y: hidden;
|
|
606
637
|
overflow-x: scroll;
|
|
607
|
-
height:
|
|
638
|
+
height: 8px;
|
|
608
639
|
}
|
|
609
640
|
.vxe-table--scroll-x-wrapper {
|
|
610
|
-
height:
|
|
641
|
+
height: 8px;
|
|
611
642
|
}
|
|
612
643
|
.vxe-table--scroll-y-handle,
|
|
613
644
|
.vxe-table--scroll-y-wrapper {
|
|
@@ -619,7 +650,7 @@
|
|
|
619
650
|
.vxe-table--scroll-y-handle {
|
|
620
651
|
overflow-y: scroll;
|
|
621
652
|
overflow-x: hidden;
|
|
622
|
-
width:
|
|
653
|
+
width: 8px;
|
|
623
654
|
height: 100%;
|
|
624
655
|
}
|
|
625
656
|
.vxe-table--scroll-x-space {
|
|
@@ -873,6 +904,7 @@
|
|
|
873
904
|
|
|
874
905
|
/*table*/
|
|
875
906
|
.vxe-table--render-default {
|
|
907
|
+
height:100%;
|
|
876
908
|
position: relative;
|
|
877
909
|
font-size: var(--vxe-ui-font-size-default);
|
|
878
910
|
color: var(--vxe-ui-font-color);
|
|
@@ -893,6 +925,12 @@
|
|
|
893
925
|
border-collapse: separate;
|
|
894
926
|
table-layout: fixed;
|
|
895
927
|
}
|
|
928
|
+
.vxe-table--render-wrapper{
|
|
929
|
+
height:100%;
|
|
930
|
+
.vxe-table--layout-wrapper {
|
|
931
|
+
height:100%
|
|
932
|
+
}
|
|
933
|
+
}
|
|
896
934
|
&:not(.is--empty) {
|
|
897
935
|
&.is--footer {
|
|
898
936
|
&.is--scroll-x {
|
|
@@ -1173,7 +1211,7 @@
|
|
|
1173
1211
|
&::after {
|
|
1174
1212
|
bottom: 0;
|
|
1175
1213
|
height: calc(100% + var(--vxe-ui-table-border-width));
|
|
1176
|
-
border-top: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
|
|
1214
|
+
//border-top: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
|
|
1177
1215
|
}
|
|
1178
1216
|
}
|
|
1179
1217
|
}
|