1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-09 10:50:24 +00:00

['dir view', 'share link' pages] modified UI details for 'Retry All' & 'Cancel All' buttons in the upload dialog (#6221)

This commit is contained in:
llj
2024-06-18 16:37:25 +08:00
committed by GitHub
parent 577036b251
commit 0da5d30442
3 changed files with 6 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ class UploadProgressDialog extends React.Component {
</div> </div>
</div> </div>
<div className="uploader-list-content"> <div className="uploader-list-content">
<div className="d-flex justify-content-between align-items-center border-bottom"> <div className="d-flex justify-content-between align-items-center border-bottom uploader-content-bar">
{uploadFileList.length > 0 && <span>{filesUploadedMsg}</span>} {uploadFileList.length > 0 && <span>{filesUploadedMsg}</span>}
<div className="ml-auto"> <div className="ml-auto">
<button <button

View File

@@ -85,7 +85,7 @@ class UploadProgressDialog extends React.Component {
</div> </div>
</div> </div>
<div className="uploader-list-content"> <div className="uploader-list-content">
<div className="d-flex justify-content-between align-items-center border-bottom"> <div className="d-flex justify-content-between align-items-center border-bottom uploader-content-bar">
{uploadFileList.length > 0 && <span>{filesUploadedMsg}</span>} {uploadFileList.length > 0 && <span>{filesUploadedMsg}</span>}
<div className="ml-auto"> <div className="ml-auto">
<button <button

View File

@@ -59,6 +59,10 @@
overflow: auto; overflow: auto;
} }
.uploader-content-bar .btn {
font-size: .875rem;
}
.file-upload-item { .file-upload-item {
height: 44px; height: 44px;
} }