Fix dropdown from showing up behind elements
This commit is contained in:
parent
8d4ff5150f
commit
2208002894
|
@ -89,6 +89,7 @@
|
|||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 5px 0;
|
||||
z-index: 10;
|
||||
border-radius: 0 0 5px 5px;
|
||||
border: 1px #ccc solid;
|
||||
background-color: white;
|
||||
|
@ -104,4 +105,4 @@
|
|||
.hover {
|
||||
background-color: #ccc;
|
||||
/* color: white; */
|
||||
}
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
<ul
|
||||
v-if="inputData !== '' && dataList.length > 0 && searchState.showOptions"
|
||||
:id="idDataList"
|
||||
:class="'list'"
|
||||
class="list"
|
||||
@mouseenter="searchState.isPointerInList = true"
|
||||
@mouseleave="searchState.isPointerInList = false"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue