Spaces:
Sleeping
Sleeping
File size: 703 Bytes
774fe36 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | /* ===== Advanced Options ===== */
.adv-checkbox-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px 12px;
margin-bottom: 12px;
}
.adv-checkbox-item {
display: flex;
align-items: center;
gap: 6px;
}
.adv-checkbox-item input[type="checkbox"] {
width: 15px;
height: 15px;
accent-color: var(--accent);
cursor: pointer;
flex-shrink: 0;
margin: 0;
}
.adv-checkbox-item label {
font-size: 0.82rem;
color: var(--text-secondary);
cursor: pointer;
user-select: none;
text-transform: none !important;
letter-spacing: 0 !important;
font-weight: 500 !important;
margin-bottom: 0 !important;
white-space: nowrap;
} |