diff --git a/src/css/main.css b/src/css/main.css index 8de3176..d8624c6 100644 --- a/src/css/main.css +++ b/src/css/main.css @@ -693,6 +693,34 @@ body.show-desc .bm-desc { display: block; } border-radius: 4px; color: var(--text-muted); white-space: nowrap; } +/* ---- PAPIERKORB (Trash, v2.3) ---- */ +.trash-list { padding: 4px 0; } +.trash-empty { + padding: 12px 18px; font-size: 12px; color: var(--text-muted); +} +.trash-item { + display: flex; align-items: center; justify-content: space-between; + gap: 10px; padding: 8px 18px; + border-bottom: 1px solid rgba(255,255,255,0.03); +} +.trash-item:last-child { border-bottom: none; } +.trash-item-info { flex: 1; min-width: 0; } +.trash-item-title { + display: block; font-size: 13px; color: var(--text-primary); + overflow: hidden; text-overflow: ellipsis; white-space: nowrap; +} +.trash-item-meta { + display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; +} +.trash-item-badge { + font-size: 10px; padding: 2px 6px; border-radius: 4px; + background: rgba(255,255,255,0.06); border: 1px solid var(--border); + color: var(--text-muted); white-space: nowrap; margin-right: 6px; +} +.trash-item-actions { display: flex; gap: 6px; flex-shrink: 0; } +.trash-actions { justify-content: flex-end; } +.trash-actions.hidden { display: none; } + /* THEME PICKER */ .theme-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;