fix: scope tag-chip x button opacity to modal, cache tagActionFeedback ref

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-20 08:56:15 -04:00
parent 7cae463fe8
commit 8599ffb37c
2 changed files with 6 additions and 5 deletions
+3 -3
View File
@@ -655,13 +655,13 @@ header {
min-height: 1.1em;
}
/* Tag chip remove button — hidden at rest, visible on hover */
.tag-chip .x {
/* Tag chip remove button in modal — hidden at rest, visible on hover */
.tag-editor .tag-chip .x {
opacity: 0;
transition: opacity 0.15s ease;
margin-left: 4px;
}
.tag-chip:hover .x {
.tag-editor .tag-chip:hover .x {
opacity: 1;
}