Add script asset sub-assets

This commit is contained in:
2026-01-09 18:42:37 +01:00
parent c4354782a8
commit 96b1cf501c
16 changed files with 770 additions and 17 deletions

View File

@@ -49,3 +49,54 @@
border: 1px solid #a00;
border-radius: 4px;
}
.modal .modal-inner .attachment-actions {
display: flex;
gap: 12px;
align-items: center;
}
.modal .modal-inner .attachment-actions .file-input-trigger.small {
padding: 10px 14px;
}
.modal .modal-inner .attachment-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 8px;
}
.modal .modal-inner .attachment-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 12px;
border: 1px solid rgba(148, 163, 184, 0.3);
border-radius: 6px;
background-color: rgba(15, 23, 42, 0.6);
}
.modal .modal-inner .attachment-meta {
display: flex;
flex-direction: column;
gap: 2px;
}
.modal .modal-inner .attachment-meta span {
font-size: 0.85rem;
color: rgba(226, 232, 240, 0.8);
}
.modal .modal-inner .attachment-actions-row {
display: flex;
gap: 8px;
align-items: center;
}
.modal .modal-inner .attachment-empty {
color: rgba(226, 232, 240, 0.7);
font-size: 0.9rem;
}