전체화면 모드 메뉴 상단으로 위치이동
This commit is contained in:
@@ -0,0 +1,236 @@
|
||||
/* GoldenChart 대시보드 — 투자분석 레포트형 레이아웃 */
|
||||
|
||||
.gc-dash-report-page {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
background: linear-gradient(160deg, #a8adb5 0%, #8b919a 100%);
|
||||
padding: 16px 20px 28px;
|
||||
}
|
||||
|
||||
.gc-dash-report-sheet {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
padding: 14mm 12mm 16mm;
|
||||
background: #fff;
|
||||
color: #111827;
|
||||
border-radius: 2px;
|
||||
box-shadow:
|
||||
0 1px 3px rgba(0, 0, 0, 0.12),
|
||||
0 8px 24px rgba(0, 0, 0, 0.18);
|
||||
font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', 'Noto Sans KR', sans-serif;
|
||||
letter-spacing: normal;
|
||||
word-break: keep-all;
|
||||
line-height: 1.45;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
||||
--text: #111827;
|
||||
--text2: #374151;
|
||||
--text3: #6b7280;
|
||||
--bg1: #ffffff;
|
||||
--bg2: #f9fafb;
|
||||
--bg3: #f3f4f6;
|
||||
--bg4: #e5e7eb;
|
||||
--border: #d1d5db;
|
||||
--brd-pos: #059669;
|
||||
--brd-neg: #dc2626;
|
||||
--brd-warn: #d97706;
|
||||
--brd-blue: #2563eb;
|
||||
--brd-purple: #7c3aed;
|
||||
--brd-teal: #0d9488;
|
||||
--brd-yellow: #ca8a04;
|
||||
--brd-green: #16a34a;
|
||||
}
|
||||
|
||||
.gc-dash-report-header {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
margin-bottom: 14px;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 2px solid #c9a227;
|
||||
}
|
||||
|
||||
.gc-dash-report-brand h1 {
|
||||
margin: 0 0 6px;
|
||||
font-size: 1.2rem;
|
||||
font-weight: 800;
|
||||
color: #111827;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.gc-dash-report-meta {
|
||||
margin: 0;
|
||||
font-size: 0.7rem;
|
||||
color: #6b7280;
|
||||
}
|
||||
|
||||
.gc-dash-report-actions {
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.gc-dash-report-refresh {
|
||||
border: 1px solid #d1d5db;
|
||||
background: #f9fafb;
|
||||
color: #374151;
|
||||
border-radius: 8px;
|
||||
padding: 6px 14px;
|
||||
font-size: 0.72rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
}
|
||||
.gc-dash-report-refresh:hover:not(:disabled) {
|
||||
background: #f3f4f6;
|
||||
border-color: #9ca3af;
|
||||
}
|
||||
.gc-dash-report-refresh:disabled {
|
||||
opacity: 0.55;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.gc-dash-report-sheet .brd-dashboard {
|
||||
padding: 0;
|
||||
background: #fff;
|
||||
min-height: 0;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.gc-dash-report-sheet .brd-dash-header {
|
||||
background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
|
||||
border: 1px solid #bfdbfe;
|
||||
}
|
||||
|
||||
.gc-dash-report-sheet .brd-dash-badge {
|
||||
background: #eff6ff;
|
||||
color: #1d4ed8;
|
||||
border-color: #93c5fd;
|
||||
}
|
||||
|
||||
.gc-dash-report-sheet .brd-dash-badge--time {
|
||||
background: #f3f4f6;
|
||||
color: #6b7280;
|
||||
border-color: #d1d5db;
|
||||
}
|
||||
|
||||
.gc-dash-report-sheet .brd-kpi-card {
|
||||
background: #fff;
|
||||
border-color: #e5e7eb;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
.gc-dash-report-sheet .brd-kpi-card:hover {
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
.gc-dash-report-sheet .brd-card {
|
||||
background: #fff;
|
||||
border-color: #e5e7eb;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
|
||||
.gc-dash-report-sheet .brd-section-title {
|
||||
background: #f9fafb;
|
||||
border-bottom-color: #e5e7eb;
|
||||
}
|
||||
|
||||
.gc-dash-report-sheet .brd-sig-table th {
|
||||
background: #f3f4f6;
|
||||
color: #374151;
|
||||
}
|
||||
|
||||
.gc-dash-report-sheet .brd-sig-even {
|
||||
background: #f9fafb;
|
||||
}
|
||||
|
||||
.gc-dash-report-error {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto 12px;
|
||||
padding: 10px 14px;
|
||||
background: #fef2f2;
|
||||
border: 1px solid #fecaca;
|
||||
border-radius: 8px;
|
||||
color: #b91c1c;
|
||||
font-size: 0.78rem;
|
||||
}
|
||||
|
||||
.gc-dash-report-loading {
|
||||
max-width: 1100px;
|
||||
margin: 40px auto;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.gc-dash-proc-mini-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
|
||||
gap: 8px;
|
||||
padding: 8px 12px 10px;
|
||||
}
|
||||
|
||||
.gc-dash-proc-mini {
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 8px;
|
||||
padding: 8px 10px;
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
.gc-dash-proc-mini--ok { border-top: 2px solid var(--brd-pos); }
|
||||
.gc-dash-proc-mini--warn { border-top: 2px solid var(--brd-yellow); }
|
||||
.gc-dash-proc-mini--down { border-top: 2px solid var(--brd-neg); }
|
||||
.gc-dash-proc-mini--off { border-top: 2px solid #9ca3af; }
|
||||
|
||||
.gc-dash-proc-mini-name {
|
||||
margin: 0 0 4px;
|
||||
font-size: 0.72rem;
|
||||
font-weight: 700;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.gc-dash-proc-mini-badge {
|
||||
font-size: 0.62rem;
|
||||
font-weight: 600;
|
||||
padding: 1px 6px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.gc-dash-spark-row {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 10px;
|
||||
padding: 0 0 4px;
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.gc-dash-spark-row { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
.gc-dash-spark-box {
|
||||
padding: 8px 10px 4px;
|
||||
border-top: 1px solid #e5e7eb;
|
||||
}
|
||||
|
||||
.gc-dash-stale-chips {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
padding: 8px 12px 10px;
|
||||
}
|
||||
|
||||
.gc-dash-stale-chip {
|
||||
border: 1px solid #fde68a;
|
||||
background: #fffbeb;
|
||||
color: #92400e;
|
||||
border-radius: 999px;
|
||||
padding: 4px 10px;
|
||||
font-size: 0.68rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
.gc-dash-stale-chip:hover {
|
||||
background: #fef3c7;
|
||||
}
|
||||
Reference in New Issue
Block a user