feat: v4.2.0 - series blocks (add to all days, delete one/all in series); 37 tests
Some checks failed
Build & Push Docker / build (push) Has been cancelled

This commit is contained in:
2026-02-20 17:58:56 +01:00
parent b91f336c12
commit b494d29790
7 changed files with 165 additions and 12 deletions

View File

@@ -946,3 +946,61 @@ body {
margin-bottom: 4px;
color: var(--header-bg);
}
/* Modal footer with left/right split */
.modal-footer-left {
display: flex;
gap: 6px;
align-items: center;
}
/* Outline danger button (for "Smazat sérii") */
.btn-danger-outline {
background: transparent;
color: var(--danger);
border: 1px solid var(--danger);
}
.btn-danger-outline:hover {
background: var(--danger);
color: white;
}
/* Series checkbox row */
.series-row {
margin-top: 4px;
padding: 10px 12px;
background: #eff6ff;
border: 1px solid #bfdbfe;
border-radius: var(--radius-sm);
}
.series-label {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
font-weight: 500;
color: var(--text);
cursor: pointer;
margin-bottom: 0 !important;
}
.series-label input[type="checkbox"] {
width: 16px;
height: 16px;
accent-color: var(--accent);
cursor: pointer;
flex-shrink: 0;
}
.series-hint {
margin-top: 4px;
font-size: 11px;
color: var(--text-light);
padding-left: 24px;
}
.hidden {
display: none !important;
}