Fix: map-fab Buttons explizit weiß (#fff) — Dark Mode machte sie schwarz

This commit is contained in:
rene 2026-04-17 10:19:09 +02:00
parent 50ec181dba
commit 7fddfdba0b
3 changed files with 8 additions and 7 deletions

View file

@ -1892,18 +1892,19 @@ textarea.form-control {
width: 44px;
height: 44px;
border-radius: 50%;
background: var(--c-surface);
border: 1.5px solid var(--c-border);
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
background: #fff;
color: #333;
border: 2px solid rgba(0,0,0,0.2);
box-shadow: 0 2px 8px rgba(0,0,0,0.25);
cursor: pointer;
font-size: 1.25rem;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.15s, border-color 0.15s;
transition: background 0.15s;
-webkit-tap-highlight-color: transparent;
}
.map-fab:hover { background: var(--c-surface-2); }
.map-fab:hover { background: #f0f0f0; }
.map-fab--pin.active {
background: var(--c-danger);
border-color: var(--c-danger);