Migrate to modernize template

This commit is contained in:
Marek Lesko
2025-10-19 16:34:01 +00:00
parent 9deee01ba3
commit aba8943d17
666 changed files with 25377 additions and 45152 deletions

68
Web/public/scss/dark/_dark.scss Executable file
View File

@@ -0,0 +1,68 @@
@use "sass:meta";
@use "../variables" as *;
.dark-theme {
// typography
color: $dark-text-secondary;
.mat-mdc-menu-panel {
color: var(--mat-sys-on-background) !important;
}
.bg-white,
.mdc-menu-surface {
background-color: var(--mat-sys-surface) !important;
}
.topbar {
background-color: var(--mat-sys-surface);
}
.hljs {
background: var(--mat-sys-surface);
}
// -------------------------------------------------------
// border
// -------------------------------------------------------
.b-1 {
border: 1px solid var(--mat-sys-outline-variant) !important;
}
.b-b-1 {
border-bottom: 1px solid var(--mat-sys-outline-variant) !important;
}
.b-t-1 {
border-top: 1px solid var(--mat-sys-outline-variant) !important;
}
.b-r-1 {
border-right: 1px solid var(--mat-sys-outline-variant) !important;
}
.b-l-1 {
border-left: 1px solid var(--mat-sys-outline-variant);
}
// fill
.customizer-button-group .mat-button-toggle-appearance-standard.mat-button-toggle-checked i-tabler.fill-icon {
fill: var(--mat-sys-primary-fixed-dim);
}
}
// horizontal + dark
html.dark-theme {
.logodark {
display: none;
}
}
html.light-theme {
.logolight {
display: none;
}
}