23-01-2026
This commit is contained in:
parent
07959c0ba2
commit
854ce02bf6
166 changed files with 32909 additions and 1262 deletions
|
|
@ -63,13 +63,53 @@ select:focus[data-flux-control] {
|
|||
@apply outline-hidden ring-2 ring-accent ring-offset-2 ring-offset-accent-foreground;
|
||||
}
|
||||
|
||||
/* Verbesserte Kontraste für Input-Werte */
|
||||
input[data-flux-control],
|
||||
textarea[data-flux-control],
|
||||
select[data-flux-control] {
|
||||
@apply text-zinc-900 dark:text-zinc-50;
|
||||
}
|
||||
|
||||
/* Placeholder sollte deutlich heller sein */
|
||||
input[data-flux-control]::placeholder,
|
||||
textarea[data-flux-control]::placeholder {
|
||||
@apply text-zinc-400 dark:text-zinc-700;
|
||||
}
|
||||
|
||||
.shadow-elegant {
|
||||
box-shadow: 0 4px 12px -8px rgba(0, 136, 204, 0.4);
|
||||
}
|
||||
.bg-background {
|
||||
background-color: hsl(var(--background));
|
||||
|
||||
& button,
|
||||
& .btn,
|
||||
& .btn-secondary,
|
||||
& a[class*="btn"],
|
||||
& [role="button"] {
|
||||
transition:
|
||||
transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
|
||||
box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
||||
filter 0.2s ease;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* \[:where(&)\]:size-4 {
|
||||
@apply size-4;
|
||||
} */
|
||||
& button:hover,
|
||||
& .btn:hover,
|
||||
& .btn-secondary:hover,
|
||||
& a[class*="btn"]:hover,
|
||||
& [role="button"]:hover {
|
||||
box-shadow:
|
||||
0 1px 2px rgba(0, 0, 0, 0.06),
|
||||
0 2px 4px rgba(0, 0, 0, 0.08),
|
||||
0 4px 8px rgba(0, 0, 0, 0.1),
|
||||
0 8px 16px rgba(0, 0, 0, 0.08),
|
||||
0 0 10px hsla(199, 74%, 49%, 0.2);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Scroll-Optimierung für sanftere Animationen */
|
||||
& {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
/* Theme-specific button styles for Backend Portal */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue