Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve(design): Table empty height in Popover and Tooltip #891

Merged
merged 1 commit into from
Dec 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/design/src/table/style/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,15 @@ export const genTableStyle: GenerateStyle<TableToken> = (token: TableToken): CSS
padding: 0,
},
},

// Popover、Tooltip 等弹出层中的表格空状态高度设为自动,避免高度过大撑高弹出层
[`${antCls}-popover, ${antCls}-tooltip`]: {
[`${componentCls} ${componentCls}-tbody`]: {
[`${componentCls}-empty-wrapper`]: {
minHeight: 'auto',
},
},
},
};
};

Expand Down
Loading