Other files

This commit is contained in:
2026-04-10 18:30:04 -04:00
parent ea4ddd7d41
commit bcbfe2797c
17 changed files with 2221 additions and 16 deletions
+68 -6
View File
@@ -922,6 +922,9 @@ h3 {
z-index: 1000;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
overflow-y: auto;
}
.modal.show {
@@ -931,25 +934,84 @@ h3 {
.modal-content {
background: var(--bg-secondary);
border-radius: 12px;
padding: 30px;
max-width: 500px;
width: 90%;
max-width: 520px;
width: 100%;
position: relative;
display: flex;
flex-direction: column;
max-height: 90vh;
margin: auto;
}
.modal-lg {
max-width: 680px;
}
.modal-header {
padding: 20px 24px 16px;
border-bottom: 1px solid var(--border-color);
flex-shrink: 0;
}
.modal-header h3 {
margin: 0;
padding-right: 32px;
}
.modal-body {
padding: 20px 24px;
overflow-y: auto;
flex: 1;
}
.modal-body h4 {
margin: 1.2rem 0 0.6rem;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--text-secondary);
}
.modal-body h4:first-child {
margin-top: 0;
}
.modal-footer {
padding: 16px 24px;
border-top: 1px solid var(--border-color);
display: flex;
justify-content: flex-end;
gap: 10px;
flex-shrink: 0;
}
.modal-close {
position: absolute;
top: 15px;
right: 20px;
font-size: 24px;
top: 16px;
right: 18px;
font-size: 22px;
cursor: pointer;
color: var(--text-secondary);
line-height: 1;
background: none;
border: none;
}
.modal-close:hover {
color: var(--text-primary);
}
.form-row {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.form-row .form-group {
flex: 1;
min-width: 120px;
}
/* Loading */
.loading {
text-align: center;