feat(plan): add Sprava kategorii management modal and button

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-06 00:55:20 +02:00
parent dab5ad8aa5
commit b94f4879e3
3 changed files with 196 additions and 0 deletions

View File

@@ -977,3 +977,37 @@
animation: none !important;
}
}
/* Category manager modal rows */
.plan-cat-manager {
display: flex;
flex-direction: column;
gap: 8px;
}
.plan-cat-row {
display: flex;
align-items: center;
gap: 8px;
}
.plan-cat-row--inactive {
opacity: 0.55;
}
.plan-cat-row .admin-form-input {
flex: 1;
min-width: 0;
}
.plan-cat-color {
width: 34px;
height: 34px;
padding: 0;
border: 1px solid var(--plan-paper-rule);
border-radius: 6px;
background: none;
cursor: pointer;
flex: 0 0 auto;
}
.plan-cat-row--new {
margin-top: 6px;
padding-top: 10px;
border-top: 1px dashed var(--plan-paper-rule);
}