начал работать с интерфейсом
All checks were successful
Deploy MES Core / deploy (push) Successful in 9s

This commit is contained in:
tertelius
2026-03-29 00:24:39 +03:00
parent f86f0bfcd4
commit a4ba577206
19 changed files with 561 additions and 14 deletions

38
static/css/style.css Normal file
View File

@@ -0,0 +1,38 @@
/* Акцентные цвета для темной темы */
[data-bs-theme="dark"] {
--bs-body-bg: #121212;
--bs-body-color: #e9ecef;
--bs-accent: #ffc107; /* Тот самый желтый */
}
[data-bs-theme="dark"] .table-custom-header {
background-color: #1e1e1e !important;
color: var(--bs-accent) !important;
}
/* Акцентные цвета для светлой темы */
[data-bs-theme="light"] {
--bs-body-bg: #e2e2e2;
--bs-body-color: #212529;
--bs-accent: #0f5132; /* Темно-зеленый */
}
/* Общие классы */
.text-accent {
color: var(--bs-accent) !important;
}
.btn-outline-accent {
color: var(--bs-accent) !important;
border-color: var(--bs-accent) !important;
}
.btn-outline-accent:hover {
background-color: var(--bs-accent) !important;
color: #000 !important;
}
/* Фикс для навигации */
.nav-link.active {
border-bottom: 2px solid var(--bs-accent);
}