57 lines
976 B
CSS
57 lines
976 B
CSS
/* runs.css — stili specifici per la pagina Processi */
|
|
|
|
.runs-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1.5rem;
|
|
flex-wrap: wrap;
|
|
margin-bottom: .5rem;
|
|
}
|
|
.runs-header h2 { margin: 0; }
|
|
|
|
.runs-filter {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
}
|
|
.runs-filter label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: .35rem;
|
|
font-size: .9rem;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
.runs-filter input[type="checkbox"] {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
cursor: pointer;
|
|
accent-color: #2563eb;
|
|
}
|
|
|
|
.filter-sep {
|
|
display: inline-block;
|
|
width: 1px;
|
|
height: 1.2rem;
|
|
background: #cbd5e1;
|
|
margin: 0 .25rem;
|
|
align-self: center;
|
|
}
|
|
.filter-group-label {
|
|
font-size: .85rem;
|
|
color: #64748b;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.proc-name-badge {
|
|
display: inline-block;
|
|
padding: .15rem .55rem;
|
|
border-radius: 999px;
|
|
font-size: .78rem;
|
|
font-weight: 600;
|
|
background: #dbeafe;
|
|
color: #1d4ed8;
|
|
white-space: nowrap;
|
|
}
|