This commit is contained in:
2026-06-18 22:11:30 +02:00
parent b2e73b4fe7
commit 0f3c27050b
4 changed files with 301 additions and 59 deletions
+7 -6
View File
@@ -3183,10 +3183,6 @@ tr:hover td { background: var(--surface-2); }
.tag-select-trigger.has-value { color: var(--text); }
.tag-select-trigger.open { border-color: var(--primary); }
.tag-select-dropdown {
position: absolute;
top: calc(100% + 3px);
left: 0;
right: 0;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 8px;
@@ -3199,12 +3195,17 @@ tr:hover td { background: var(--surface-2); }
.tag-select-option {
display: flex;
align-items: center;
gap: 8px;
padding: 7px 10px;
gap: 6px;
padding: 3px 10px;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
color: var(--text);
white-space: nowrap;
text-align: left;
justify-content: flex-start;
width: 100%;
box-sizing: border-box;
}
.tag-select-option:hover { background: var(--surface-2); }
.tag-select-option.selected { color: var(--primary); font-weight: 600; }