추세검색 수정

This commit is contained in:
Macbook
2026-05-27 00:28:09 +09:00
parent fe812389cc
commit c1bcf88c6c
10 changed files with 631 additions and 287 deletions
@@ -123,6 +123,88 @@
color: var(--tsd-muted);
}
/* 상승추세 검색그룹 카드 */
.tsd-bullish-card {
border: 1px solid color-mix(in srgb, var(--tsd-gold) 35%, var(--tsd-border));
border-radius: 10px;
background: var(--tsd-filter-cat-bg);
overflow: hidden;
}
.tsd-bullish-card-head {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 12px;
background: color-mix(in srgb, var(--tsd-gold) 8%, transparent);
border-bottom: 1px solid var(--tsd-border);
}
.tsd-bullish-card-en {
display: block;
font-size: 11px;
font-weight: 700;
color: var(--tsd-gold);
}
.tsd-bullish-card-ko {
display: block;
font-size: 10px;
color: var(--tsd-muted);
margin-top: 2px;
}
.tsd-bullish-card-total {
font-size: 13px;
font-weight: 800;
color: var(--tsd-gold);
white-space: nowrap;
}
.tsd-bullish-items {
display: flex;
flex-direction: column;
gap: 0;
padding: 6px 0;
}
.tsd-bullish-item {
padding: 8px 12px;
border-bottom: 1px solid color-mix(in srgb, var(--tsd-border) 70%, transparent);
}
.tsd-bullish-item:last-child {
border-bottom: none;
}
.tsd-bullish-item-head {
display: flex;
flex-direction: column;
gap: 2px;
margin-bottom: 6px;
}
.tsd-bullish-item-label {
font-size: 12px;
font-weight: 700;
color: var(--se-text, var(--text));
}
.tsd-bullish-item-desc {
font-size: 9px;
color: var(--tsd-muted);
line-height: 1.35;
}
.tsd-bullish-item-controls {
display: flex;
align-items: center;
gap: 8px;
}
.tsd-bullish-slider {
flex: 1;
min-width: 0;
}
.tsd-bullish-score {
width: 44px;
text-align: center;
flex-shrink: 0;
}
.tsd-bullish-score-unit {
font-size: 10px;
color: var(--tsd-muted);
flex-shrink: 0;
}
.tsd-filter-cat {
border: 1px solid var(--tsd-border);
border-radius: 10px;
@@ -825,6 +907,13 @@
display: none !important;
}
.tsd-card-score {
font-size: 11px;
font-weight: 700;
color: var(--tsd-gold);
margin-left: auto;
white-space: nowrap;
}
.tsd-card-high-badge {
font-size: 8px;
font-weight: 700;
@@ -861,3 +950,56 @@
grid-template-columns: repeat(3, 1fr);
}
}
/* 검색 실행 — 화면 중앙 백드롭 프로그레스 */
.tsd-search-overlay {
position: fixed;
inset: 0;
z-index: 9000;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.52);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
}
.tsd-search-overlay-card {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
padding: 28px 40px;
min-width: 240px;
border-radius: 12px;
background: var(--se-bg-elevated, var(--bg2));
border: 1px solid var(--tsd-border);
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.tsd-search-spinner {
width: 36px;
height: 36px;
}
.tsd-search-overlay-text {
margin: 0;
font-size: 14px;
font-weight: 600;
color: var(--tsd-text);
}
.tsd-search-progress {
width: 200px;
height: 4px;
border-radius: 2px;
background: var(--tsd-track-bg);
overflow: hidden;
}
.tsd-search-progress-indeterminate {
width: 45%;
height: 100%;
border-radius: 2px;
background: linear-gradient(90deg, var(--tsd-gold), var(--se-accent, var(--accent)));
animation: tsd-search-progress-slide 1.1s ease-in-out infinite;
}
@keyframes tsd-search-progress-slide {
0% { transform: translateX(-120%); }
100% { transform: translateX(320%); }
}