추세검색 설정 추가

This commit is contained in:
Macbook
2026-05-27 01:36:06 +09:00
parent c1bcf88c6c
commit 2e08c6b16f
42 changed files with 1507 additions and 226 deletions
@@ -348,6 +348,10 @@
background: color-mix(in srgb, var(--accent, #3f7ef5) 8%, var(--se-panel-card-bg));
}
.vtd-target-item--pinned {
border-color: color-mix(in srgb, var(--se-gold) 35%, var(--se-border));
}
.vtd-target-item-main {
display: flex;
align-items: flex-start;
@@ -452,6 +456,39 @@
animation: vtd-target-flash-fall 0.7s ease-out forwards;
}
.vtd-target-item-actions {
display: inline-flex;
align-items: center;
gap: 4px;
flex-shrink: 0;
}
.vtd-target-pin {
display: inline-flex;
align-items: center;
justify-content: center;
width: 22px;
height: 22px;
padding: 0;
border: 1px solid var(--se-border);
border-radius: 6px;
background: transparent;
color: var(--se-text-muted);
cursor: pointer;
transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.vtd-target-pin:hover {
border-color: color-mix(in srgb, var(--tsd-gold, var(--se-gold)) 45%, var(--se-border));
color: var(--tsd-gold, var(--se-gold));
}
.vtd-target-pin--on {
border-color: color-mix(in srgb, var(--tsd-gold, var(--se-gold)) 55%, var(--se-border));
background: color-mix(in srgb, var(--tsd-gold, var(--se-gold)) 14%, transparent);
color: var(--tsd-gold, var(--se-gold));
}
.vtd-target-remove {
flex-shrink: 0;
width: 22px;
@@ -464,11 +501,16 @@
font-size: 12px;
}
.vtd-target-remove:hover {
.vtd-target-remove:hover:not(:disabled) {
background: color-mix(in srgb, var(--down, #ef5350) 15%, transparent);
color: var(--down, #ef5350);
}
.vtd-target-remove:disabled {
opacity: 0.35;
cursor: not-allowed;
}
.vtd-target-strategy-field {
display: flex;
align-items: center;
@@ -1569,6 +1611,11 @@
transition: background 0.25s ease, box-shadow 0.25s ease;
}
.vtd-sig-eq-seg--lit.vtd-sig-eq-seg--red {
background: linear-gradient(90deg, #c62828, #ff8a80);
box-shadow: 0 0 6px color-mix(in srgb, #ef5350 50%, transparent);
}
.vtd-sig-eq-seg--lit.vtd-sig-eq-seg--blue {
background: linear-gradient(90deg, #1e6fd9, #4fc3f7);
box-shadow: 0 0 6px color-mix(in srgb, #4fc3f7 50%, transparent);
@@ -1992,6 +2039,11 @@
.vtd-sig-col--progress { width: 16%; }
.vtd-sig-col--status { width: 18%; min-width: 4.75rem; }
.vtd-sig-table--no-threshold .vtd-sig-col--ind { width: 38%; }
.vtd-sig-table--no-threshold .vtd-sig-col--val { width: 22%; }
.vtd-sig-table--no-threshold .vtd-sig-col--progress { width: 22%; }
.vtd-sig-table--no-threshold .vtd-sig-col--status { width: 18%; }
.vtd-sig-table th {
text-align: left;
padding: 6px 6px;