File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
client/packages/lowcoder/src/comps/comps/tableLiteComp/styles Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -12,16 +12,19 @@ export const HeaderStyleProvider = styled.div<{
1212 ` }
1313
1414 .ant-table-thead > tr > th {
15- background: ${ props => props . $headerStyle ?. background || '#fafafa' } ;
16- color: ${ props => props . $headerStyle ?. color || 'rgba(0, 0, 0, 0.85)' } ;
17- border-color: ${ props => props . $headerStyle ?. borderColor || '#f0f0f0' } ;
18- padding: ${ props => props . $headerStyle ?. padding || '16px' } ;
19- font-weight: ${ props => props . $headerStyle ?. fontWeight || '600' } ;
15+ background: ${ props => props . $headerStyle ?. headerBackground } ;
16+ color: ${ props => props . $headerStyle ?. headerText } ;
17+ border-color: ${ props => props . $headerStyle ?. border } ;
18+ border-width: ${ props => props . $headerStyle ?. borderWidth } ;
19+ padding: ${ props => props . $headerStyle ?. padding } ;
20+ margin: ${ props => props . $headerStyle ?. margin } ;
21+ font-size: ${ props => props . $headerStyle ?. textSize } ;
22+
2023 ${ props => props . $headerStyle ?. customCSS || '' }
2124 }
2225
2326 ${ props => props . $isSticky && `
24- .ant-table-thead > tr > th {
27+ &&& .ant-table-thead > tr > th {
2528 position: sticky;
2629 top: 0;
2730 z-index: 3;
You can’t perform that action at this time.
0 commit comments