Refine process cost navigation and unify section layouts

This commit is contained in:
b17301
2026-04-28 18:11:14 +09:00
parent 1d6470c770
commit 3bf48c42db
8 changed files with 1302 additions and 279 deletions
+33 -21
View File
@@ -15,6 +15,8 @@
align-items: center;
gap: 12px;
flex-wrap: wrap;
padding-bottom: 14px;
border-bottom: 1px solid var(--line);
}
.voucher-title-wrap h2 {
@@ -164,15 +166,24 @@
}
.panel-shell {
border: 1px solid var(--line);
border-radius: 16px;
background: #fff;
border: 0;
border-top: 1px solid var(--line);
border-radius: 0;
background: transparent;
overflow: hidden;
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
box-shadow: none;
}
.voucher-page > .panel-shell:first-of-type {
border-top: 0;
}
.voucher-page > .panel-shell:first-of-type > .panel-header {
padding-top: 0;
}
.panel-header {
padding: 12px 16px 8px;
padding: 14px 0 10px;
display: flex;
justify-content: space-between;
gap: 10px;
@@ -195,7 +206,7 @@
}
.panel-body {
padding: 0 16px 16px;
padding: 0 0 16px;
min-width: 0;
}
@@ -208,9 +219,9 @@
.status-card {
min-width: 130px;
width: auto;
border: 1px solid var(--line);
border-radius: 14px;
background: #fff;
border: 1px solid rgba(217, 221, 227, 0.9);
border-radius: 999px;
background: rgba(255, 255, 255, 0.76);
padding: 10px 12px;
text-align: left;
cursor: pointer;
@@ -259,9 +270,10 @@
.detail-panel {
display: none;
border: 1px solid var(--line);
border-radius: 14px;
background: #fff;
border: 0;
border-top: 1px solid var(--line);
border-radius: 0;
background: transparent;
overflow: visible;
min-width: 0;
}
@@ -271,9 +283,9 @@
}
.detail-head {
padding: 10px 12px;
border-bottom: 1px solid var(--line);
background: #f8fafc;
padding: 14px 0 10px;
border-bottom: 1px solid rgba(217, 221, 227, 0.9);
background: transparent;
display: grid;
gap: 10px;
position: relative;
@@ -288,7 +300,7 @@
justify-content: space-between;
align-items: center;
gap: 12px;
padding: 12px 16px;
padding: 14px 0;
}
.data-panel summary::-webkit-details-marker {
@@ -331,8 +343,8 @@
width: 100%;
max-width: 100%;
overflow: auto;
border-top: 1px solid var(--line);
background: #fff;
border-top: 1px solid rgba(217, 221, 227, 0.9);
background: transparent;
max-height: 460px;
box-sizing: border-box;
}
@@ -346,9 +358,9 @@
.table-footer {
display: flex;
justify-content: center;
padding: 10px 12px 14px;
border-top: 1px solid var(--line);
background: #fff;
padding: 10px 0 14px;
border-top: 1px solid rgba(217, 221, 227, 0.9);
background: transparent;
}
.load-more-button {