баг-фикс 30/34

This commit is contained in:
Zuev
2026-07-19 14:40:43 +03:00
parent 3d798c13e3
commit bc0e1ab1b4
172 changed files with 13431 additions and 2910 deletions

View File

@@ -317,6 +317,48 @@
line-height: 1.4;
}
.dashboard-conflict-card {
display: flex;
align-items: flex-start;
gap: 0.75rem;
padding: 1rem;
border: 1px solid rgba(229, 231, 235, 0.1);
border-left: 4px solid var(--warning);
border-radius: var(--radius-sm);
background: rgba(245, 158, 11, 0.05);
}
.dashboard-conflict-card--error {
border-left-color: var(--error);
background: rgba(239, 68, 68, 0.05);
}
.dashboard-conflict-card__icon {
margin-top: 0.1rem;
}
.dashboard-conflict-card__body {
flex: 1;
}
.dashboard-conflict-card__body h4 {
margin: 0 0 0.25rem;
color: #d97706;
font-size: 0.95rem;
font-weight: 600;
}
.dashboard-conflict-card--error h4 {
color: var(--error);
}
.dashboard-conflict-card__body p {
margin: 0;
color: var(--text-main);
font-size: 0.85rem;
line-height: 1.4;
}
@media (max-width: 1200px) {
.dashboard-metrics-grid {
grid-template-columns: repeat(2, minmax(180px, 1fr));
@@ -927,6 +969,9 @@
border-radius: var(--radius-sm);
background: rgba(10, 10, 15, 0.97);
box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.schedule-visual-context-menu[hidden] {
@@ -2014,7 +2059,7 @@
}
.calendar-week-col {
width: calc((100% - var(--calendar-day-head-width)) / var(--calendar-week-columns, 1));
width: 22px;
}
.calendar-semester-table thead th {
@@ -2122,6 +2167,8 @@
visibility: hidden;
transform: translateY(4px) scale(0.98);
transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s ease;
right: 12px;
bottom: 12px;
}
.calendar-day-tooltip.visible {
@@ -2219,6 +2266,7 @@
}
.calendar-total-chip {
--chip-color: var(--accent);
display: inline-flex;
align-items: center;
gap: 0.35rem;
@@ -3626,6 +3674,15 @@ tbody tr:hover {
transition: transform 0.4s ease;
}
.theme-toggle-icon-enter {
animation: theme-toggle-icon-enter 0.4s ease;
}
@keyframes theme-toggle-icon-enter {
from { opacity: 0; transform: rotate(-90deg) scale(0.5); }
to { opacity: 1; transform: rotate(0deg) scale(1); }
}
.theme-toggle:hover {
background: var(--button-secondary-bg-hover);
border-color: var(--button-secondary-border);