Fix: Welten-Overlay Gradient statt flachem Schwarz — Mitte leuchtet, SW by-v646

This commit is contained in:
rene 2026-05-03 10:55:45 +02:00
parent 0488cde13f
commit cd5aa73df3
4 changed files with 14 additions and 8 deletions

View file

@ -7677,9 +7677,15 @@ svg.empty-state-icon {
background-repeat: no-repeat;
}
/* World Panel: dunkles Overlay über dem Hintergrundbild */
/* World Panel: Gradient-Overlay — Mitte leuchtet, oben/unten gedämpft für Lesbarkeit */
.world-panel {
background: rgba(0, 0, 0, 0.44);
background: linear-gradient(
to bottom,
rgba(0,0,0,0.52) 0%,
rgba(0,0,0,0.18) 28%,
rgba(0,0,0,0.14) 55%,
rgba(0,0,0,0.52) 100%
);
display: flex;
flex-direction: column;
justify-content: space-between; /* Info oben, Chips unten */