Миллион изменений, создание вкладки "Расписание занятий"

This commit is contained in:
Zuev
2026-04-29 23:35:16 +03:00
parent 8f71b9b2b5
commit 96e9d8155f
42 changed files with 1718 additions and 4661 deletions

View File

@@ -104,6 +104,104 @@
opacity: 0.5;
}
.schedule-section-label {
display: block;
font-size: 0.78rem;
font-weight: 500;
color: var(--text-secondary);
margin: 1rem 0 0.5rem;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.schedule-checkbox-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 0.35rem;
padding: 0.5rem;
background: var(--bg-input);
border: 1px solid var(--bg-card-border);
border-radius: var(--radius-sm);
}
.schedule-slots-panel {
margin-top: 1rem;
}
.schedule-slots-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-top: 0.75rem;
}
.schedule-slot-row {
display: grid;
grid-template-columns: repeat(7, minmax(130px, 1fr)) auto;
gap: 0.75rem;
align-items: end;
padding: 0.75rem;
background: var(--bg-input);
border: 1px solid var(--bg-card-border);
border-radius: var(--radius-sm);
}
.schedule-slot-summary,
.schedule-semester-line {
margin-bottom: 0.35rem;
}
.schedule-semester-line {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.5rem;
}
.schedule-inline-table {
margin-top: 1rem;
}
.matrix-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 0.75rem;
margin-top: 1rem;
}
.matrix-week {
display: grid;
gap: 0.45rem;
padding: 0.75rem;
background: var(--bg-input);
border: 1px solid var(--bg-card-border);
border-radius: var(--radius-sm);
}
.matrix-week > span {
color: var(--text-secondary);
font-size: 0.78rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.muted {
color: var(--text-secondary);
}
@media (max-width: 1180px) {
.schedule-slot-row {
grid-template-columns: repeat(2, minmax(180px, 1fr));
}
}
@media (max-width: 640px) {
.schedule-slot-row {
grid-template-columns: 1fr;
}
}
/* Hide Number Arrows */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
@@ -1032,4 +1130,4 @@ tbody tr:hover {
position: fixed;
top: 1.25rem;
right: 1.25rem;
}
}