2024-04-16 01:14:34 +02:00
|
|
|
.attachmentsList:empty {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachmentsList:empty::before {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
content: "No data";
|
|
|
|
font-weight: bolder;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
opacity: 0.8;
|
|
|
|
min-height: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachmentListItem {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
2024-04-16 21:23:59 +02:00
|
|
|
|
2024-04-29 23:06:14 +02:00
|
|
|
.attachmentListItem.disabled .attachmentListItemName {
|
|
|
|
text-decoration: line-through;
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachmentListItem.disabled .attachmentFileIcon {
|
|
|
|
opacity: 0.75;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
2024-04-16 21:23:59 +02:00
|
|
|
.attachmentListItemSize {
|
|
|
|
min-width: 4em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachmentListItemCreated {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2024-05-27 21:22:21 +02:00
|
|
|
|
|
|
|
.attachmentListItemCheckboxContainer,
|
|
|
|
.attachmentBulkActionsContainer,
|
|
|
|
.attachmentsBulkEditCheckbox {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@supports selector(:has(*)) {
|
|
|
|
.dataBankAttachments:has(.attachmentsBulkEditCheckbox:checked) .attachmentsBulkEditButton {
|
|
|
|
color: var(--golden);
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataBankAttachments:has(.attachmentsBulkEditCheckbox:checked) .attachmentBulkActionsContainer {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataBankAttachments:has(.attachmentsBulkEditCheckbox:checked) .attachmentListItemCheckboxContainer {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataBankAttachments:has(.attachmentsBulkEditCheckbox:checked) .attachmentFileIcon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|