themes initialized! many new partials and scss integrations across most templates; core.settings contains COMPRESS test fallback; apps.dashboard.views updated for new alerts and styling
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-02 15:45:12 -05:00
parent e142e5d4d7
commit eebc355f95
12 changed files with 446 additions and 28 deletions

View File

@@ -0,0 +1,37 @@
.theme-picker {
display: flex;
gap: 1rem;
}
.theme-picker-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.swatch {
width: 4rem;
height: 4rem;
border-radius: 0.5rem;
background: linear-gradient(
to bottom,
rgba(var(--priUser), 1) 0%,
rgba(var(--priUser), 1) 33%,
rgba(var(--secUser), 1) 33%,
rgba(var(--secUser), 1) 66%,
rgba(var(--terUser), 1) 66%,
rgba(var(--terUser), 1) 100%
);
border: 0.15rem solid rgba(var(--secUser), 0.5);
&.active {
border: 0.2rem solid rgba(var(--ninUser), 1);
box-shadow: 0 0 0.5rem rgba(var(--ninUser), 0.5);
}
&.locked {
opacity: 0.5;
filter: saturate(0.4);
}
}