Fix incorrect fixed positioning for autocompletion box in advanced atlas
This commit is contained in:
parent
d839503c1e
commit
53edc3f3c4
1 changed files with 2 additions and 2 deletions
|
@ -11,6 +11,7 @@
|
|||
}
|
||||
|
||||
.search-field-container {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
@ -24,13 +25,12 @@
|
|||
.search-field {
|
||||
width: 25vw;
|
||||
padding: 8px;
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.search-field-compl {
|
||||
max-height: 50vh;
|
||||
position: fixed;
|
||||
position: absolute;
|
||||
display: none;
|
||||
background-color: #212121;
|
||||
border: solid 1px #666;
|
||||
|
|
Loading…
Reference in a new issue