File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed
client/packages/lowcoder/src/comps/comps/tableComp Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,10 @@ const TableWrapper = styled.div<{
169
169
border-top: none !important;
170
170
border-inline-start: none !important;
171
171
172
+ &::after {
173
+ box-shadow: none !important;
174
+ }
175
+
172
176
.ant-table-content {
173
177
overflow: unset !important;
174
178
}
Original file line number Diff line number Diff line change @@ -54,14 +54,12 @@ const getStyle = (
54
54
return css `
55
55
background-color: ${ style . toolbarBackground } ;
56
56
// Implement horizontal scrollbar and vertical page number selection is not blocked
57
- // padding: ${ position === "above" ? "13px 16px 313px 16px" : "313px 16px 13px 16px" } ;
58
- // margin: ${ position === "above" ? "0 0 -300px 0" : "-300px 0 0 0" } ;
59
57
padding: 13px 12px;
60
- ${ fixedToolbar && `
61
- position: sticky;
62
- postion: -webkit-sticky ;
63
- z-index: 99;
64
- ` } ;
58
+ position: sticky;
59
+ postion: -webkit- sticky;
60
+ left: 0 ;
61
+
62
+ ${ fixedToolbar && `z-index: 99; `} ;
65
63
${ fixedToolbar && position === 'below' && `bottom: 0;` } ;
66
64
${ fixedToolbar && position === 'above' && `top: 0;` } ;
67
65
You can’t perform that action at this time.
0 commit comments