tool per ticket automatici

This commit is contained in:
2026-07-05 23:33:52 +02:00
parent fb67a277e5
commit e55cccbaa5
7 changed files with 400 additions and 10 deletions
+55
View File
@@ -1983,4 +1983,59 @@ body {
.attachment-size {
color: var(--text-muted);
font-size: 0.72rem;
}
/* Upload list & item styling */
.upload-file-list {
display: flex;
flex-direction: column;
gap: var(--space-xs);
margin-top: var(--space-sm);
margin-bottom: var(--space-md);
max-width: 400px;
}
.upload-file-item {
display: flex;
justify-content: space-between;
align-items: center;
background: var(--bg-secondary);
border: 1px solid var(--border-light);
border-radius: var(--radius-md);
padding: var(--space-xs) var(--space-sm);
font-size: 0.8rem;
color: var(--text-primary);
}
.upload-file-name {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-right: var(--space-sm);
}
.upload-file-remove {
background: none;
border: none;
color: var(--error);
cursor: pointer;
padding: 0 4px;
font-size: 1rem;
transition: opacity var(--transition-fast);
}
.upload-file-remove:hover {
opacity: 0.8;
}
.bulk-row .badge-attachments-count {
position: absolute;
top: -6px;
right: -6px;
background: var(--accent-primary);
color: white;
font-size: 0.65rem;
padding: 1px 4px;
border-radius: 6px;
font-weight: bold;
}