fix(web): fix checkbox unselectable bug & optimize document-list/app-annotation styles (#28244)

This commit is contained in:
yangzheli
2025-11-20 11:28:20 +08:00
committed by GitHub
parent 1d2cdf3489
commit 879869d3e3
6 changed files with 90 additions and 88 deletions

View File

@@ -285,9 +285,9 @@ const DocumentList: FC<IDocumentListProps> = ({
}, [])
return (
<div className='relative flex h-full w-full flex-col'>
<div className='relative grow overflow-x-auto'>
<table className={`mt-3 w-full min-w-[700px] max-w-full border-collapse border-0 text-sm ${s.documentTable}`}>
<div className='relative mt-3 flex h-full w-full flex-col'>
<div className='relative h-0 grow overflow-x-auto'>
<table className={`w-full min-w-[700px] max-w-full border-collapse border-0 text-sm ${s.documentTable}`}>
<thead className="h-8 border-b border-divider-subtle text-xs font-medium uppercase leading-8 text-text-tertiary">
<tr>
<td className='w-12'>
@@ -455,7 +455,7 @@ const DocumentList: FC<IDocumentListProps> = ({
{pagination.total && (
<Pagination
{...pagination}
className='w-full shrink-0 px-0 pb-0'
className='w-full shrink-0'
/>
)}