feat(modal): use CSS variables for header height and improve recipe modal layout

This commit is contained in:
Will Miao
2025-10-06 16:28:56 +08:00
parent 35fdf9020d
commit 1b958d0a5d
3 changed files with 20 additions and 4 deletions

View File

@@ -2,10 +2,10 @@
.modal {
display: none;
position: fixed;
top: 48px; /* Start below the header */
top: var(--header-height, 48px); /* Start below the header */
left: 0;
width: 100%;
height: calc(100% - 48px); /* Adjust height to exclude header */
height: calc(100% - var(--header-height, 48px)); /* Adjust height to exclude header */
background: rgba(0, 0, 0, 0.2); /* 调整为更淡的半透明黑色 */
z-index: var(--z-modal);
overflow: auto; /* Change from hidden to auto to allow scrolling */
@@ -23,7 +23,7 @@ body.modal-open {
position: relative;
max-width: 800px;
height: auto;
max-height: calc(90vh);
max-height: calc(100vh - var(--header-height, 48px) - 5.5rem); /* Subtract header height and modal margins */
margin: 1rem auto; /* Keep reduced top margin */
background: var(--lora-surface);
border-radius: var(--border-radius-base);

View File

@@ -211,6 +211,20 @@
border: 1px solid var(--lora-border);
}
#recipeModal .modal-content {
display: flex;
flex-direction: column;
}
#recipeModal .modal-body {
display: flex;
flex-direction: column;
gap: var(--space-2);
flex: 1 1 auto;
min-height: 0;
overflow: hidden;
}
/* Top Section: Preview and Gen Params */
.recipe-top-section {
display: grid;
@@ -474,9 +488,10 @@
/* Bottom Section: Resources */
.recipe-bottom-section {
max-height: 320px;
display: flex;
flex-direction: column;
flex: 1 1 auto;
min-height: 0;
border-top: 1px solid var(--border-color);
padding-top: var(--space-2);
}