make search results work on mobile as well
This commit is contained in:
parent
9feebeaf40
commit
ee6fe9718e
1 changed files with 9 additions and 6 deletions
|
@ -9,13 +9,14 @@
|
|||
list-style:none;
|
||||
max-height:80%;
|
||||
overflow-x:hidden;
|
||||
overflow-y: scroll;
|
||||
overflow-y: auto;
|
||||
padding-bottom:6px;
|
||||
position:fixed;
|
||||
right:0;
|
||||
text-overflow:ellipsis;
|
||||
top:45px;
|
||||
width:380px;
|
||||
max-width: 95%;
|
||||
z-index:75;
|
||||
}
|
||||
|
||||
|
@ -50,12 +51,14 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
#searchresults td.result {
|
||||
width:250px;
|
||||
#searchresults .name,
|
||||
#searchresults .text {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
#searchresults td.result div.text {
|
||||
padding-left:1em;
|
||||
white-space:nowrap;
|
||||
#searchresults .text {
|
||||
padding-left: 16px;
|
||||
}
|
||||
|
||||
#searchresults td.result * {
|
||||
|
|
Loading…
Reference in a new issue