Drafts system implemented

This commit is contained in:
2026-08-05 17:16:09 -05:00
parent 203ff88af1
commit 49c4ff681f
13 changed files with 419 additions and 75 deletions
+20
View File
@@ -3870,3 +3870,23 @@ a.deletelink {
.notify-item a { color: var(--md-sys-color-on-surface, #cdd6f4); }
.notify-item.notify-unread a { color: var(--ctp-mocha-blue, #1e66f5); font-weight: 600; }
.notify-new { color: var(--ctp-mocha-red); font-weight: 600; }
/* My Projects page */
.myprojects-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.myprojects-header h1 { margin: 0; }
.myprojects-layout { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 24px; align-items: start; }
.myprojects-divider { background: var(--md-sys-color-outline-variant, #45475a); align-self: stretch; }
.myprojects-col h2 { margin-top: 0; font-size: 1.05rem; }
@media (max-width: 900px) {
.myprojects-layout { grid-template-columns: 1fr; }
.myprojects-divider { height: 1px; width: 100%; }
}
.draft-list { display: flex; flex-direction: column; gap: 0.6rem; }
.draft-card {
background: var(--md-sys-color-surface-variant, #45475a);
border-radius: 10px; padding: 0.7rem 0.8rem;
display: flex; flex-direction: column; gap: 0.3rem;
}
.draft-title { font-weight: 600; color: var(--md-sys-color-on-surface, #cdd6f4); text-decoration: none; }
.draft-meta { color: var(--md-sys-color-on-surface-variant, #a6adc8); font-size: 0.75rem; }
.draft-actions { display: flex; gap: 0.4rem; align-items: center; }