모의투자 관리 기능 추가

This commit is contained in:
Macbook
2026-05-31 03:47:07 +09:00
parent 9d7dddfa57
commit 16d0e2c226
78 changed files with 4688 additions and 972 deletions
+65 -50
View File
@@ -376,6 +376,52 @@ html.theme-blue {
.tv-sym-btn:hover { background: var(--bg3); }
.tv-sym-btn svg { color: var(--text2); flex-shrink: 0; }
.tv-sym-text { color: var(--text); }
.tv-sym-btn--search {
width: 32px;
height: 32px;
padding: 0;
justify-content: center;
}
/* 종목 검색 아이콘 우측 — 선택 종목(한글명 클릭 가능)·심볼·현재가 */
.tv-toolbar-quote {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
padding: 0 4px 0 0;
font-size: 12px;
white-space: nowrap;
}
.tv-quote-ko {
padding: 4px 6px;
margin: 0;
border: none;
border-radius: var(--radius);
background: transparent;
font-size: 14px;
font-weight: 700;
color: var(--text);
cursor: pointer;
transition: background 0.12s;
}
.tv-quote-ko:hover { background: var(--bg3); }
.tv-quote-en {
font-size: 11px;
font-weight: 500;
color: var(--text3);
}
.tv-quote-price {
font-size: 13px;
font-weight: 700;
}
.tv-quote-change.up { color: var(--up); font-weight: 600; }
.tv-quote-change.down { color: var(--down); font-weight: 600; }
.tv-quote-status {
color: var(--text2);
font-size: 11px;
}
.tv-quote-status--err { color: var(--down); }
.tv-sym-input {
font-size: 14px;
@@ -9908,17 +9954,15 @@ html.theme-blue {
border-left: 1px solid var(--border);
transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.rsp-wrap--open .rsp-panel {
width: 420px;
}
/* trade-right-panel 너비·패딩: styles/tradeRightPanel.css */
/* ── 탭 헤더 ── */
/* ── 탭 헤더 (레거시 rsp-tab) ── */
.rsp-tabs {
display: flex;
border-bottom: 1px solid var(--border);
flex-shrink: 0;
background: var(--bg3);
min-width: 420px;
min-width: 0;
}
.rsp-tab {
flex: 1;
@@ -9939,43 +9983,22 @@ html.theme-blue {
font-weight: 600;
}
/* 탭 본문 */
/* 탭 본문 (레거시) */
.rsp-body {
flex: 1;
min-height: 0;
min-width: 420px;
min-width: 300px;
display: flex;
flex-direction: column;
overflow: hidden;
}
/* 실시간 차트 우측 — 알림목록·가상매매와 동일 PaperSplitPanel 레이아웃 */
.rsp-body.ptd-right-body {
padding: 0;
gap: 0;
}
.rsp-body .ptd-split-panel--right {
flex: 1;
min-height: 0;
height: 100%;
padding: 8px 10px 6px;
box-sizing: border-box;
}
.rsp-body .ptd-ob-stack--fill {
flex: 1;
min-height: 0;
height: 100%;
}
.rsp-body .ptd-split-panel--right .ptd-order-card .top-actions {
margin-top: auto;
}
.rsp-tabs.bps-right-tabs {
display: flex;
border-bottom: 1px solid var(--border);
flex-shrink: 0;
background: var(--bg3);
min-width: 420px;
min-width: 0;
}
.rsp-tabs.bps-right-tabs .bps-right-tab {
flex: 1;
@@ -10434,6 +10457,9 @@ html.theme-blue {
color: var(--text);
outline: none;
}
.top-field--price .top-input {
text-align: right;
}
.top-input--full {
width: 100%;
border: 1px solid var(--border);
@@ -11770,11 +11796,7 @@ html.theme-light .tam-disclaimer { color: #90a4ae; }
transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1), flex-basis 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.tnl-page--with-right .tnl-side-wrap--right.tnl-side-wrap--open .tnl-right.tnl-right--open {
flex: 0 0 min(380px, 38vw);
width: min(380px, 38vw);
min-width: 300px;
max-width: 420px;
.tnl-page--with-right .tnl-side-wrap--right.tnl-side-wrap--open .tnl-right.trade-right-panel.tnl-right--open {
border-left: 1px solid var(--border);
}
.tnl-right-tabs {
@@ -11788,21 +11810,6 @@ html.theme-light .tam-disclaimer { color: #90a4ae; }
display: flex;
flex-direction: column;
}
.tnl-page--with-right .ptd-right-body {
flex: 1;
min-height: 0;
}
.tnl-page--with-right .ptd-split-panel--right {
height: 100%;
}
.tnl-page--with-right .ptd-ob-stack--fill {
height: 100%;
}
/* 매매 시그널 알림 우측 — 가상매매·실시간 차트와 동일 compact (paperDashboard.css) */
.tnl-page--with-right .ptd-split-panel--right .ptd-order-card .top-actions {
margin-top: auto;
}
.tnl-row--selected {
border-color: var(--accent, #7aa2f7);
box-shadow: 0 0 0 1px rgba(122, 162, 247, 0.35);
@@ -12658,7 +12665,15 @@ html.theme-light .tam-disclaimer { color: #90a4ae; }
padding: 0 8px;
overflow: hidden;
}
.app--mobile .upbit-hint { display: none; }
.app--mobile .tv-toolbar-quote {
gap: 4px;
max-width: min(42vw, 200px);
overflow: hidden;
}
.app--mobile .tv-quote-ko { font-size: 12px; padding: 3px 4px; }
.app--mobile .tv-quote-en { font-size: 10px; }
.app--mobile .tv-quote-price { font-size: 11px; }
.app--mobile .tv-quote-change { font-size: 10px; }
.app--mobile .upbit-market { max-width: 42vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* ── 메인: 차트 전체 너비, 사이드 패널 오버레이 ── */