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 {
|
.search-field-container {
|
||||||
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
@ -24,13 +25,12 @@
|
||||||
.search-field {
|
.search-field {
|
||||||
width: 25vw;
|
width: 25vw;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
position: relative;
|
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-field-compl {
|
.search-field-compl {
|
||||||
max-height: 50vh;
|
max-height: 50vh;
|
||||||
position: fixed;
|
position: absolute;
|
||||||
display: none;
|
display: none;
|
||||||
background-color: #212121;
|
background-color: #212121;
|
||||||
border: solid 1px #666;
|
border: solid 1px #666;
|
||||||
|
|
Loading…
Reference in a new issue