fix overflow in entry details

This commit is contained in:
Koen Lageveen 2020-01-10 21:45:53 +01:00
parent 0b3d36c64f
commit 608fc321ab
1 changed files with 9 additions and 0 deletions

View File

@ -97,6 +97,9 @@ section.select-list {
section.select-list:focus {
outline: none;
}
section.select-list > * {
overflow: hidden;
}
section.select-list .entry {
position: relative;
display: flex;
@ -109,6 +112,10 @@ section.select-list .entry:last-child {
section.select-list .entry:hover {
background: #fff;
}
section.select-list .entry > a {
display: block;
flex: 1;
}
section.select-list .entry.filtered-out {
display: none;
}
@ -179,6 +186,8 @@ section.select-list .details {
display: block;
font-size: 10px;
text-indent: 2em;
display: block;
width: 60%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;