Design refresh + a bunch of stuff (#2864)

Co-authored-by: hfcRed <hfcred@gmx.net>
This commit is contained in:
Kalle
2026-03-19 17:51:42 +02:00
committed by GitHub
parent fcc5c5f273
commit fef1ffc955
830 changed files with 35854 additions and 16836 deletions

View File

@@ -1,31 +1,32 @@
.card {
border: var(--border-style);
border-radius: var(--rounded-xs);
border-radius: var(--radius-box);
margin: 0;
padding: 0;
}
.header {
--header-border-radius: calc(var(--radius-field) - 2px);
display: flex;
align-items: center;
gap: var(--s-2);
padding: var(--s-2) var(--s-3);
background-color: var(--bg-lighter);
background-color: var(--color-bg-higher);
border-bottom: var(--border-style);
border-radius: var(--rounded-xs) var(--rounded-xs) 0 0;
border-radius: var(--header-border-radius) var(--header-border-radius) 0 0;
}
.dragHandle {
width: var(--s-5);
height: var(--s-5);
cursor: grab;
color: var(--text-lighter);
color: var(--color-text-high);
}
.headerLabel {
flex: 1;
font-size: var(--fonts-xs);
font-weight: var(--semi-bold);
font-size: var(--font-xs);
font-weight: var(--weight-semi);
}
.content {