1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-20 19:08:21 +00:00
Files
seahub/frontend/src/components/dialog/trash-dialog/index.css

53 lines
853 B
CSS
Raw Normal View History

.trash-dialog {
max-width: 1100px;
height: calc(100% - 56px);
overflow: hidden;
}
.trash-dialog .modal-content {
height: 100%;
overflow: hidden;
}
.trash-dialog .modal-header {
align-items: center;
}
.trash-dialog .modal-header .button-control {
display: flex;
justify-content: center;
align-items: center;
}
.trash-dialog .modal-header .trash-dialog-old-page {
margin-left: auto;
}
.trash-dialog .modal-header .clean {
height: 30px;
line-height: 28px;
padding: 0 0.5rem;
}
.trash-dialog .modal-body {
height: 500px;
overflow-y: auto;
}
.trash-dialog .modal-body .more {
background: #efefef;
border: 0;
2024-08-29 16:41:16 +08:00
color: #666;
}
.trash-dialog .modal-body .more:hover {
color: #000;
background: #dfdfdf;
}
@media (max-width: 768px) {
.trash-dialog .modal-header .trash-dialog-old-page {
font-size: 14px;
}
}