This commit is contained in:
2026-05-06 19:55:37 +02:00
parent 7a7994e8b6
commit b41993c455
43 changed files with 1563 additions and 14 deletions

View File

@@ -216,7 +216,7 @@ button:disabled { opacity: 0.5; cursor: not-allowed; }
}
.student-report-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.student-report-grid article {
@@ -350,6 +350,67 @@ button:disabled { opacity: 0.5; cursor: not-allowed; }
align-items: flex-start;
}
.adaptive-kit-panel {
display: flex;
flex-direction: column;
gap: 1rem;
border: 1px solid #dbeafe;
border-radius: 16px;
background: #f8fbff;
padding: 1rem;
}
.adaptive-kit-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.75rem;
}
.adaptive-kit-grid article {
display: flex;
flex-direction: column;
gap: 0.4rem;
border: 1px solid #e2e8f0;
border-radius: 14px;
background: white;
padding: 0.85rem;
}
.adaptive-kit-grid span {
color: #475569;
font-size: 0.9rem;
line-height: 1.35;
}
.adaptive-profile-form {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem;
border-top: 1px solid #dbeafe;
padding-top: 1rem;
}
.adaptive-profile-form label {
display: flex;
flex-direction: column;
gap: 0.35rem;
font-weight: 800;
}
.adaptive-profile-form .wide-field,
.adaptive-profile-form button {
grid-column: 1 / -1;
}
.adaptive-profile-form textarea {
min-height: 96px;
resize: vertical;
border: 1px solid #cfd7e6;
border-radius: 12px;
padding: 0.8rem 1rem;
font: inherit;
}
.review-fullscreen {
position: fixed;
inset: 0;
@@ -687,6 +748,23 @@ button:disabled { opacity: 0.5; cursor: not-allowed; }
font-size: 0.82rem;
font-weight: 800;
}
.program-node-text-preview,
.validation-text-preview {
min-height: 260px;
max-height: 520px;
overflow: auto;
border: 1px solid #e5e7eb;
border-radius: 12px;
background: white;
padding: 1rem;
}
.program-node-text-preview pre,
.validation-text-preview {
margin: 0;
color: #14213d;
font: 0.95rem/1.55 Inter, system-ui, sans-serif;
white-space: pre-wrap;
}
.admin-review-note p {
margin: 0.35rem 0;
line-height: 1.45;
@@ -1218,6 +1296,8 @@ button:disabled { opacity: 0.5; cursor: not-allowed; }
.admin-students-layout,
.student-report-grid,
.student-settings-grid,
.adaptive-kit-grid,
.adaptive-profile-form,
.validation-layout,
.admin-program-browser {
grid-template-columns: 1fr;