community fixes

This commit is contained in:
jaberjaber23
2026-02-27 01:58:57 +03:00
parent a1d6776989
commit 0bb4e6f17b
9 changed files with 157 additions and 20 deletions

View File

@@ -1098,19 +1098,25 @@ mark.search-highlight {
font-weight: 500;
}
/* Theme toggle */
.theme-toggle {
cursor: pointer;
padding: 6px 8px;
/* Theme switcher — 3-mode pill (Light / System / Dark) */
.theme-switcher {
display: inline-flex;
border-radius: var(--radius-sm);
color: var(--text-muted);
font-size: 16px;
background: none;
border: 1px solid transparent;
transition: all 0.2s;
border: 1px solid var(--border);
overflow: hidden;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--border); }
.theme-opt {
cursor: pointer;
padding: 4px 8px;
font-size: 14px;
background: none;
border: none;
color: var(--text-muted);
transition: all 0.2s;
line-height: 1;
}
.theme-opt:hover { color: var(--text-primary); background: var(--bg-hover); }
.theme-opt.active { color: var(--accent); background: var(--accent-glow); }
/* Utility */
.flex { display: flex; }