From 608fc321ab3b29468e1f751c2277061041ace652 Mon Sep 17 00:00:00 2001 From: Koen Lageveen Date: Fri, 10 Jan 2020 21:45:53 +0100 Subject: [PATCH] fix overflow in entry details --- index.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/index.css b/index.css index 193920c..f52df16 100644 --- a/index.css +++ b/index.css @@ -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;