Compare commits
No commits in common. "0bbfc3f4fb707b5eb34452b5f94ef7d24d68f8f6" and "152304aa7104c4139f97b0a1962a3e45ee677f7b" have entirely different histories.
0bbfc3f4fb
...
152304aa71
|
|
@ -19,7 +19,13 @@
|
|||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
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%);
|
||||
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%
|
||||
);
|
||||
border-radius: 20px;
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
|
|
@ -124,9 +130,7 @@ input[type='text'][name='aiSearchText'] {
|
|||
border-radius: 50%;
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
transform: translate(-50%, -50%);
|
||||
transition:
|
||||
width 0.6s,
|
||||
height 0.6s;
|
||||
transition: width 0.6s, height 0.6s;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
|
|
@ -186,9 +190,7 @@ select,
|
|||
// Trust section container - more prominent
|
||||
.trust-section-container {
|
||||
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 {
|
||||
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
|
||||
|
|
@ -205,9 +207,7 @@ select,
|
|||
}
|
||||
|
||||
.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 {
|
||||
|
|
@ -227,15 +227,11 @@ select,
|
|||
// Search form container enhancement
|
||||
.search-form-container {
|
||||
transition: all 0.3s ease;
|
||||
// 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);
|
||||
backdrop-filter: blur(10px);
|
||||
|
||||
// Falls Firefox das Element "vergisst", erzwingen wir eine Ebene
|
||||
transform: translateZ(0);
|
||||
opacity: 1 !important;
|
||||
visibility: visible !important;
|
||||
&:hover {
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
}
|
||||
|
||||
// Header button improvements
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import { environment_base } from './environment.base';
|
||||
|
||||
export const environment = environment_base;
|
||||
|
||||
environment.apiBaseUrl = 'http://bizsearch.at-powan.ts.net:3001';
|
||||
environment.mailinfoUrl = 'http://bizsearch.at-powan.ts.net';
|
||||
environment.imageBaseUrl = 'http://bizsearch.at-powan.ts.net';
|
||||
import { environment_base } from './environment.base';
|
||||
|
||||
export const environment = environment_base;
|
||||
|
||||
environment.apiBaseUrl = 'http://bizsearch.at-powan.ts.net:3001';
|
||||
environment.mailinfoUrl = 'http://bizsearch.at-powan.ts.net';
|
||||
environment.imageBaseUrl = 'http://bizsearch.at-powan.ts.net';
|
||||
|
|
|
|||
Loading…
Reference in New Issue