refactor: enhance Optuna backtesting framework, optimize orderbook filtering, and update database management utilities.
This commit is contained in:
@@ -71,8 +71,25 @@
|
||||
|
||||
/* 스피너 */
|
||||
.spin-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55);
|
||||
z-index: 9999; align-items: center; justify-content: center; }
|
||||
z-index: 9999; align-items: center; justify-content: center; }
|
||||
.spin-overlay.show { display: flex; }
|
||||
|
||||
.trade-db-chart-overlay {
|
||||
position: fixed; inset: 0; z-index: 10050;
|
||||
background: rgba(0,0,0,.65);
|
||||
align-items: center; justify-content: center;
|
||||
padding: 16px;
|
||||
}
|
||||
.trade-db-chart-panel {
|
||||
width: min(960px, 96vw);
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 12px;
|
||||
padding: 14px 16px 12px;
|
||||
box-shadow: 0 12px 40px rgba(0,0,0,.45);
|
||||
}
|
||||
.trade-ext-links a { color: var(--accent); text-decoration: none; }
|
||||
.trade-ext-links a:hover { text-decoration: underline; }
|
||||
.spinner { width: 48px; height: 48px; border: 4px solid var(--border);
|
||||
border-top-color: var(--accent); border-radius: 50%; animation: spin .9s linear infinite; }
|
||||
@keyframes spin { to { transform: rotate(360deg); } }
|
||||
|
||||
Reference in New Issue
Block a user