diff --git a/templates/index.html b/templates/index.html index 1c68375..8a5cd5a 100644 --- a/templates/index.html +++ b/templates/index.html @@ -46,9 +46,16 @@ a{color:var(--link)} background: var(--panel); } +.header-top { + display: flex; + align-items: center; + justify-content: space-between; + margin-bottom: 8px; +} + .sidebar-header h1 { font-size: 18px; - margin: 0 0 8px 0; + margin: 0; color: var(--accent); font-weight: 600; } @@ -59,6 +66,29 @@ a{color:var(--link)} margin: 0; } +.minimize-all-btn { + background: var(--chip); + border: 1px solid var(--border); + color: var(--muted); + padding: 6px 8px; + border-radius: 6px; + cursor: pointer; + transition: all 0.2s ease; + display: flex; + align-items: center; + justify-content: center; +} + +.minimize-all-btn:hover { + background: var(--tab-active); + color: var(--fg); + border-color: var(--accent); +} + +.minimize-all-btn i { + font-size: 12px; +} + /* Sidebar Controls */ .sidebar-controls { padding: 16px; @@ -511,7 +541,12 @@ footer{position:fixed;right:10px;bottom:10px;opacity:.6;font-size:11px}