fix(backtest): UI 렌더링, 레이아웃 개선 및 Optuna DB 휩쏘 적용 안내 문구 패치

- 최근 잡 목록 위치 상단으로 이동 (UX 개선)
- 체크박스 렌더링 방식 수정 (네이티브 스타일 통일)
- 호가·휩쏘 읽기전용 필드 표시 및 Whipsaw 평균수치(stats) 핫핑크 색상 로직 복구
- Bootstrap bundle JS 복구 (비교 모달 정상 호출)
- 백테스트 실행 시 후처리 파라미터 오해 방지를 위한 팝업 안내 문구 명확화
This commit is contained in:
Your Name
2026-09-01 04:19:58 +09:00
parent e18817ec28
commit 2c37771a16
4 changed files with 90 additions and 52 deletions

View File

@@ -437,3 +437,17 @@
.dash-ops-table tr.dash-broker-head.dash-broker-kis td { background: rgba(63, 185, 80, 0.08); }
.dash-ops-table tr.dash-ops-group-start td { border-top: 2px solid var(--border); }
.dash-ops-table tr.dash-ops-inactive td { opacity: 0.55; }
/* 체크박스 네이티브 스타일 강제 (빈 테두리만 나오지 않게) */
.form-check-input[type="checkbox"], .opt-cmp-chk {
-webkit-appearance: checkbox !important;
appearance: checkbox !important;
width: 15px !important;
height: 15px !important;
margin: 0 !important;
cursor: pointer !important;
flex-shrink: 0;
accent-color: #58a6ff;
}