Refine process cost navigation and unify section layouts
This commit is contained in:
+20
-17
@@ -23,6 +23,7 @@
|
||||
--page-frame-width-dual: min(2560px, calc(100vw - (var(--page-gutter) * 2)));
|
||||
--page-frame-width-single: min(1520px, calc(100vw - (var(--page-gutter) * 2)));
|
||||
--status-widget-height: 34px;
|
||||
--toolbar-row-height: 44px;
|
||||
}
|
||||
|
||||
* {
|
||||
@@ -116,12 +117,12 @@
|
||||
}
|
||||
|
||||
.panel {
|
||||
background: var(--panel);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 18px;
|
||||
padding: var(--panel-pad);
|
||||
box-shadow: 0 10px 24px rgba(21, 24, 29, 0.045);
|
||||
backdrop-filter: blur(6px);
|
||||
background: transparent;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
backdrop-filter: none;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
@@ -165,11 +166,12 @@
|
||||
}
|
||||
|
||||
.stat-card {
|
||||
background: var(--white);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 14px;
|
||||
padding: 14px 15px 13px;
|
||||
box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
|
||||
background: transparent;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
padding: 0 0 14px;
|
||||
box-shadow: none;
|
||||
border-bottom: 1px solid rgba(217, 221, 227, 0.9);
|
||||
}
|
||||
|
||||
.stat-card .label {
|
||||
@@ -402,9 +404,10 @@
|
||||
|
||||
.table-wrap {
|
||||
overflow: auto;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 14px;
|
||||
background: var(--white);
|
||||
border: 0;
|
||||
border-top: 1px solid var(--line);
|
||||
border-radius: 0;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
table {
|
||||
@@ -431,7 +434,7 @@
|
||||
}
|
||||
|
||||
tbody tr:nth-child(even) td {
|
||||
background: var(--table-alt);
|
||||
background: rgba(245, 246, 248, 0.65);
|
||||
}
|
||||
|
||||
.empty {
|
||||
@@ -614,9 +617,9 @@
|
||||
<div class="page">
|
||||
<nav class="nav">
|
||||
<a href="/" class="{% if request.url.path == '/' %}active{% endif %}">대시보드</a>
|
||||
<a href="/projects" class="{% if request.url.path == '/projects' %}active{% endif %}">프로젝트 정보</a>
|
||||
<a href="/annual-summary" class="{% if request.url.path == '/annual-summary' %}active{% endif %}">연도별 수익/비용</a>
|
||||
<a href="/process-cost" class="{% if request.url.path == '/process-cost' %}active{% endif %}">프로세스 원가</a>
|
||||
<a href="/process-cost" class="{% if request.url.path == '/process-cost' %}active{% endif %}">프로젝트 원가</a>
|
||||
<a href="/projects" class="{% if request.url.path == '/projects' %}active{% endif %}">프로젝트 정보</a>
|
||||
<a href="/wehago-compare" class="{% if request.url.path == '/wehago-compare' %}active{% endif %}">전표비교</a>
|
||||
<div class="nav-spacer"></div>
|
||||
<button type="button" class="view-mode-switch" id="viewModeSwitch" data-mode="dual" aria-label="화면 구성 전환">
|
||||
|
||||
Reference in New Issue
Block a user