fix: aggiunta nota ticket unito. feat: possiblità di visualizzare ticket in schede. feat: possibilità di creare un nuovo gruppo dall'interfaccia del ticket.
This commit is contained in:
+74
-1
@@ -1161,10 +1161,15 @@ body {
|
||||
gap: var(--space-md);
|
||||
padding: var(--space-sm) var(--space-md);
|
||||
margin-bottom: var(--space-md);
|
||||
background: linear-gradient(135deg, rgba(160, 65, 71, 0.15), rgba(160, 65, 71, 0.15));
|
||||
background-color: var(--bg-card);
|
||||
background-image: linear-gradient(135deg, rgba(160, 65, 71, 0.15), rgba(160, 65, 71, 0.15));
|
||||
border: 1px solid var(--border-accent);
|
||||
border-radius: var(--radius-lg);
|
||||
animation: slideDown 0.2s ease-out;
|
||||
position: sticky;
|
||||
top: var(--topbar-height);
|
||||
z-index: 45;
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
|
||||
@keyframes slideDown {
|
||||
@@ -2493,4 +2498,72 @@ body {
|
||||
margin: var(--space-xs) var(--space-sm);
|
||||
padding: 8px 12px !important;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
/* ---- Ticket Tab Bar System ---- */
|
||||
.tabs-bar {
|
||||
display: flex;
|
||||
flex-wrap: wrap; /* Wraps to new line if too many tabs */
|
||||
align-items: stretch;
|
||||
background: var(--bg-secondary);
|
||||
padding: 0;
|
||||
}
|
||||
.tab-item {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 8px 16px;
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-right: 1px solid var(--border-subtle);
|
||||
border-radius: 0 !important; /* Square corners */
|
||||
font-size: 0.8rem;
|
||||
font-weight: 500;
|
||||
color: var(--text-secondary);
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
transition: all var(--transition-fast);
|
||||
margin: 0 !important;
|
||||
}
|
||||
.tab-item:hover {
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
.tab-item.active {
|
||||
background: var(--bg-primary); /* Blend with main content background */
|
||||
color: var(--accent-primary);
|
||||
border-bottom: 2px solid var(--accent-primary);
|
||||
}
|
||||
.tab-item .tab-close {
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
padding: 2px;
|
||||
font-size: 0.75rem;
|
||||
line-height: 1;
|
||||
opacity: 0.7;
|
||||
transition: all 0.15s;
|
||||
}
|
||||
.tab-item .tab-close:hover {
|
||||
opacity: 1;
|
||||
color: var(--error);
|
||||
}
|
||||
|
||||
/* ---- Full Bleed Ticket View Area ---- */
|
||||
#view-container.ticket-view-active {
|
||||
padding: 0 !important;
|
||||
}
|
||||
#view-container.ticket-view-active .back-link {
|
||||
margin: var(--space-md) var(--space-xl) var(--space-xs);
|
||||
display: inline-flex;
|
||||
}
|
||||
#view-container.ticket-view-active .ticket-detail {
|
||||
border-radius: 0 !important;
|
||||
border: none !important;
|
||||
}
|
||||
#view-container.ticket-view-active .ticket-detail .card {
|
||||
border-radius: 0 !important;
|
||||
border-left: none !important;
|
||||
border-right: none !important;
|
||||
}
|
||||
Reference in New Issue
Block a user