fix ui
All checks were successful
Deploy on Master Change / deploy (push) Successful in 48s

This commit is contained in:
2026-07-03 18:33:49 +07:00
parent ea73c15738
commit d054fce432
2 changed files with 100 additions and 62 deletions

View File

@@ -4653,10 +4653,13 @@ input:checked + .slider:before {
}
}
/* ── System management ── */
.system-page {
overflow-y: auto;
padding-bottom: 1.5rem;
display: flex;
flex-direction: column;
flex: 1;
min-height: 0;
overflow: hidden;
padding-bottom: 1rem;
}
.system-subnav {
@@ -4728,20 +4731,30 @@ input:checked + .slider:before {
}
.system-panel {
min-height: 200px;
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
overflow: hidden;
}
.system-section {
display: flex;
flex-direction: column;
gap: 1rem;
flex: 1;
min-height: 0;
overflow: hidden;
}
.system-section--grid {
display: grid;
grid-template-columns: 1fr 280px;
gap: 1rem;
align-items: start;
align-items: stretch;
flex: 1;
min-height: 0;
overflow: hidden;
}
.system-block {
@@ -4750,6 +4763,9 @@ input:checked + .slider:before {
border-radius: var(--radius-md);
padding: 1.15rem 1.25rem;
box-shadow: var(--shadow-sm);
display: flex;
flex-direction: column;
min-height: 0;
}
.system-block--info {
@@ -4825,6 +4841,9 @@ input:checked + .slider:before {
display: flex;
flex-direction: column;
gap: 0.45rem;
overflow-y: auto;
flex: 1;
min-height: 0;
}
.system-domain-item {
@@ -4890,7 +4909,10 @@ input:checked + .slider:before {
.system-table-wrap {
overflow-x: auto;
overflow-y: auto;
margin-bottom: 0.75rem;
flex: 1;
min-height: 0;
}
.template-grid {
@@ -5414,3 +5436,21 @@ input:checked + .slider:before {
margin-bottom: 0.75rem;
}
.attendance-collapsible-wrapper {
max-height: 500px;
opacity: 1;
overflow: hidden;
transition: max-height 0.3s ease-in-out, opacity 0.25s ease-in-out, margin 0.3s ease-in-out;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.attendance-collapsible-wrapper.collapsed {
max-height: 0;
opacity: 0;
margin: 0 !important;
padding: 0 !important;
pointer-events: none;
}