style: riviste parti dell'interfaccia dei ticket. feat: aggiunta possiblità di modificare il tempo inserito nelle note ed aggiunta voce per tempo nel menu azioni rapide

This commit is contained in:
2026-07-07 21:14:24 +02:00
parent 7b0b29e6c6
commit 3f6d2cc3a8
8 changed files with 832 additions and 140 deletions
+36
View File
@@ -903,6 +903,36 @@ body {
color: var(--accent-primary);
}
/* Queue Custom Tooltip */
.ticket-table td.queue-cell {
position: relative;
overflow: visible !important;
}
.queue-tooltip {
visibility: hidden;
opacity: 0;
position: absolute;
left: 50%;
bottom: 100%;
transform: translate(-50%, -6px);
background: var(--bg-tertiary);
color: var(--text-primary);
border: 1px solid var(--border-subtle);
padding: 6px 12px;
border-radius: var(--radius-md);
font-size: 0.8rem;
font-weight: 500;
white-space: nowrap;
box-shadow: var(--shadow-lg);
z-index: 1000;
transition: opacity 0.05s ease, visibility 0.05s ease;
pointer-events: none;
}
.queue-cell:hover .queue-tooltip {
visibility: visible;
opacity: 1;
}
.ticket-table td {
padding: 10px var(--space-md);
border-bottom: 1px solid var(--border-subtle);
@@ -1067,6 +1097,12 @@ body {
backdrop-filter: blur(12px);
border: 1px solid var(--border-subtle);
border-radius: var(--radius-lg);
position: relative;
z-index: 20;
}
.state-multiselect-item:hover {
background: rgba(255, 255, 255, 0.05);
}
.filter-group {