Add draft/published editor workflow with publish, revert, and dirty indicator

This commit is contained in:
2026-06-05 10:45:09 +03:00
parent eec2986921
commit f4253f50ca
7 changed files with 506 additions and 43 deletions
@@ -71,6 +71,13 @@
gap: var(--space-1);
}
.nameRow {
display: flex;
align-items: center;
gap: var(--space-2);
min-width: 0;
}
.name {
font-size: 13px;
font-weight: 500;
@@ -79,6 +86,15 @@
text-overflow: ellipsis;
}
/* Unpublished-draft indicator (spec §03D / §02 status). */
.draftDot {
flex: 0 0 auto;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--accent);
}
.date {
font-size: 11px;
color: var(--text-secondary);