실시간 차트 보조지표 탭 문제 수정

This commit is contained in:
Macbook
2026-05-28 01:26:53 +09:00
parent 4f6694b206
commit 98dfb3613c
19 changed files with 801 additions and 182 deletions
+38
View File
@@ -1514,6 +1514,14 @@ html.theme-blue {
gap: 10px;
transition: background 0.1s;
}
.ind-panel-item--drag-over {
background: #2962ff14;
outline: 1px solid rgba(41, 98, 255, 0.35);
outline-offset: -1px;
}
.ind-panel-drag-handle {
margin: 0 0 0 -2px;
}
.ind-panel-item:hover { background: var(--bg3); }
.ind-panel-item.active { background: #2962ff0e; }
.ind-panel-item-info {
@@ -9450,6 +9458,36 @@ html.theme-blue {
border-radius: 8px;
overflow: hidden;
}
.stg-ind-card.ind-settings-row--drag-over,
.ibsm-card.ind-settings-row--drag-over {
border-color: var(--accent, #7aa2f7);
box-shadow: 0 0 0 1px rgba(122, 162, 247, 0.35);
}
.ind-settings-drag-handle {
flex-shrink: 0;
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
margin: 0 2px 0 -4px;
padding: 0;
border: none;
border-radius: 4px;
background: transparent;
color: var(--text-muted, #888);
font-size: 14px;
line-height: 1;
cursor: grab;
touch-action: none;
}
.ind-settings-drag-handle:hover {
color: var(--text, #ccc);
background: rgba(255, 255, 255, 0.06);
}
.ind-settings-drag-handle:active {
cursor: grabbing;
}
.stg-ind-card--expanded {
border-color: rgba(122, 162, 247, 0.35);
}