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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user