fix theming + ui improvements

This commit is contained in:
toni
2025-12-25 20:56:05 +01:00
parent e15be9c7e3
commit 17c0ff208b
14 changed files with 559 additions and 422 deletions
@@ -1,16 +1,33 @@
mat-radio-group {
@use "@angular/material" as mat;
:host {
display: flex;
flex-direction: column;
flex-flow: column;
height: 100%;
// overflow: auto;
}
.filter-header {
.filter-container {
display: flex;
flex-direction: row;
justify-content: space-evenly;
justify-content: start;
gap: 5vw;
flex-wrap: wrap;
}
.table-container {
overflow: auto;
border: 1px solid var(--mat-sys-outline);
min-height: 400px;
}
mat-form-field {
height: 100%;
display: inline-block;
}
mat-radio-group {
display: flex;
flex-direction: column;
}
.status-filters {
@@ -19,3 +36,16 @@ mat-form-field {
justify-content: center;
gap: 1rem;
}
td {
border: 1px solid var(--mat-sys-outline-variant);
border-collapse: collapse;
}
.table-row:nth-child(even) {
background-color: var(--mat-sys-surface-variant);
}
.table-row:nth-child(odd) {
background-color: var(--mat-sys-surface);
}