mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-27 19:26:36 +00:00
Fix z-index map, always set icon for location selector (#12137)
This commit is contained in:
parent
2648a53bbc
commit
637e4203e5
@ -52,7 +52,10 @@ export class HaLocationSelector extends LitElement {
|
|||||||
longitude: value?.longitude || this.hass.config.longitude,
|
longitude: value?.longitude || this.hass.config.longitude,
|
||||||
radius: selector.location.radius ? value?.radius || 1000 : undefined,
|
radius: selector.location.radius ? value?.radius || 1000 : undefined,
|
||||||
radius_color: zoneRadiusColor,
|
radius_color: zoneRadiusColor,
|
||||||
icon: selector.location.icon,
|
icon:
|
||||||
|
selector.location.icon || selector.location.radius
|
||||||
|
? "mdi:map-marker-radius"
|
||||||
|
: "mdi:map-marker",
|
||||||
location_editable: true,
|
location_editable: true,
|
||||||
radius_editable: true,
|
radius_editable: true,
|
||||||
},
|
},
|
||||||
|
@ -488,6 +488,14 @@ export class HaMap extends ReactiveElement {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
color: var(--primary-text-color);
|
color: var(--primary-text-color);
|
||||||
}
|
}
|
||||||
|
.leaflet-pane {
|
||||||
|
z-index: 0 !important;
|
||||||
|
}
|
||||||
|
.leaflet-control,
|
||||||
|
.leaflet-top,
|
||||||
|
.leaflet-bottom {
|
||||||
|
z-index: 1 !important;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user