Compare commits

..

5 Commits

Author SHA1 Message Date
Andreas Knuth 0bbfc3f4fb dfgdfg 2026-02-02 17:26:00 -06:00
Andreas Knuth 3b47540985 css change 2026-02-02 17:00:22 -06:00
Andreas Knuth 21d7f16289 CSS Fix for Firefox 2026-02-02 16:49:10 -06:00
Andreas Knuth c632cd90b5 Merge branch 'timo' 2026-02-02 09:31:36 -06:00
Andreas Knuth c2d7a53039 dfg 2025-11-30 12:20:01 -06:00
2 changed files with 25 additions and 21 deletions

View File

@ -19,13 +19,7 @@
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
background: linear-gradient( background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
180deg,
rgba(0, 0, 0, 0.35) 0%,
rgba(0, 0, 0, 0.15) 40%,
rgba(0, 0, 0, 0.05) 70%,
rgba(0, 0, 0, 0) 100%
);
border-radius: 20px; border-radius: 20px;
pointer-events: none; pointer-events: none;
z-index: 1; z-index: 1;
@ -130,7 +124,9 @@ input[type='text'][name='aiSearchText'] {
border-radius: 50%; border-radius: 50%;
background: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.3);
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s; transition:
width 0.6s,
height 0.6s;
pointer-events: none; pointer-events: none;
} }
@ -190,7 +186,9 @@ select,
// Trust section container - more prominent // Trust section container - more prominent
.trust-section-container { .trust-section-container {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
transition: box-shadow 0.3s ease, transform 0.3s ease; transition:
box-shadow 0.3s ease,
transform 0.3s ease;
&:hover { &:hover {
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
@ -207,7 +205,9 @@ select,
} }
.trust-icon { .trust-icon {
transition: background-color 0.2s ease, color 0.2s ease; transition:
background-color 0.2s ease,
color 0.2s ease;
} }
.trust-badge:hover .trust-icon { .trust-badge:hover .trust-icon {
@ -227,11 +227,15 @@ select,
// Search form container enhancement // Search form container enhancement
.search-form-container { .search-form-container {
transition: all 0.3s ease; transition: all 0.3s ease;
backdrop-filter: blur(10px); // KEIN backdrop-filter hier!
background-color: rgba(255, 255, 255, 0.95) !important;
border: 1px solid rgba(0, 0, 0, 0.1); // Dunklerer Rand für Kontrast
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
&:hover { // Falls Firefox das Element "vergisst", erzwingen wir eine Ebene
background-color: rgba(255, 255, 255, 0.9); transform: translateZ(0);
} opacity: 1 !important;
visibility: visible !important;
} }
// Header button improvements // Header button improvements