Ajoute un sélecteur de tags existants dans la modale fiche idée

This commit is contained in:
Etienne Delvarre
2026-06-22 18:12:17 +02:00
parent 16f8bf578c
commit 04b436a9c7
3 changed files with 43 additions and 3 deletions
+3 -1
View File
@@ -196,7 +196,9 @@
.tags-input-container { display: flex; flex-wrap: wrap; gap: 6px; padding: 6px 8px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-input); align-items: center; min-height: 36px; }
.tags-input-container:focus-within { border-color: var(--accent); }
.tags-input { border: none; outline: none; font-size: 13px; font-family: 'Lora', serif; color: var(--text); background: transparent; flex: 1; min-width: 80px; padding: 2px 0; }
.tag-chip { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; background: #ede8e0; color: #6b5a4a; border-radius: 6px; font-size: 12px; font-family: 'Lora', serif; }
.tags-existing-select { border: none; outline: none; font-size: 12px; font-family: 'Lora', serif; color: var(--text-muted); background: transparent; cursor: pointer; padding: 2px 8px; border-left: 1px dashed var(--border); }
.tags-existing-select:focus { color: var(--text); }
.tags-input-container .tag-chip { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; background: #ede8e0; color: #6b5a4a; border-radius: 6px; font-size: 12px; font-family: 'Lora', serif; }
.dark .tag-chip { background: #3a3020; color: #c4a870; }
.tag-chip-remove { cursor: pointer; font-size: 14px; line-height: 1; opacity: 0.6; }
.tag-chip-remove:hover { opacity: 1; }