tool per ticket automatici
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user