fix(webui): z-index on surface

feat/selector-improvements
Tomáš Mládek 2023-11-16 10:42:14 +01:00
parent 5b1828021c
commit 317bd98264
2 changed files with 4 additions and 5 deletions

View File

@ -326,6 +326,10 @@
.inner {
transform: translate(-50%, -50%);
}
&:hover {
z-index: 99;
}
}
.view-mode-selector {

View File

@ -12,7 +12,6 @@
<UpLink passthrough to={{ entity: address }}>
<div
class="surface-point"
class:popup
on:mouseover={() => (popup = true)}
on:mouseleave={() => (popup = false)}
>
@ -40,10 +39,6 @@
&:hover {
background: lighten(colors.$red, 20%);
}
&.popup {
z-index: 9999;
}
}
.popup-inner {