начал работать с интерфейсом
All checks were successful
Deploy MES Core / deploy (push) Successful in 9s
All checks were successful
Deploy MES Core / deploy (push) Successful in 9s
This commit is contained in:
38
static/css/style.css
Normal file
38
static/css/style.css
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user