@worktile/theia 15.1.10 → 15.1.11
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/esm2020/plugins/table/components/table.component.mjs +3 -3
- package/fesm2015/worktile-theia.mjs +2 -2
- package/fesm2015/worktile-theia.mjs.map +1 -1
- package/fesm2020/worktile-theia.mjs +2 -2
- package/fesm2020/worktile-theia.mjs.map +1 -1
- package/package.json +1 -1
- package/plugins/table/components/table.component.scss +12 -6
package/package.json
CHANGED
|
@@ -738,16 +738,13 @@ $top-cell-z-index: 13;
|
|
|
738
738
|
|
|
739
739
|
/* table readonly mode */
|
|
740
740
|
.the-editor-readonly {
|
|
741
|
-
.
|
|
741
|
+
.the-numbered-table {
|
|
742
742
|
.the-table-row-controls-wrapper {
|
|
743
743
|
display: none;
|
|
744
744
|
}
|
|
745
745
|
.the-table-container {
|
|
746
746
|
padding-left: 0;
|
|
747
747
|
}
|
|
748
|
-
.the-numbered-table:not(.the-table-with-sticky-column) .the-table-wrapper {
|
|
749
|
-
padding-left: 0;
|
|
750
|
-
}
|
|
751
748
|
.the-table-number-col {
|
|
752
749
|
position: sticky;
|
|
753
750
|
left: 0;
|
|
@@ -765,9 +762,18 @@ $top-cell-z-index: 13;
|
|
|
765
762
|
left: 45px;
|
|
766
763
|
z-index: $top-cell-z-index;
|
|
767
764
|
}
|
|
765
|
+
|
|
768
766
|
// 滑动时阴影偏移到序号列 td 上
|
|
769
|
-
&:not(.the-table-with-sticky-column)
|
|
770
|
-
left
|
|
767
|
+
&:not(.the-table-with-sticky-column) {
|
|
768
|
+
.the-table-container.the-table-left-shadow {
|
|
769
|
+
&::before {
|
|
770
|
+
left: 45px;
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
.the-table-wrapper {
|
|
775
|
+
margin-left: 0;
|
|
776
|
+
padding-left: 0;
|
|
771
777
|
}
|
|
772
778
|
}
|
|
773
779
|
}
|