From e399390329cea075e36b914879801e485ccedfaa Mon Sep 17 00:00:00 2001 From: Brandon Lo Date: Tue, 2 Jul 2019 11:35:10 -0400 Subject: Change dropdown and selection list Fix selection list text from overflowing Add ellipses to overflowing text Make dropdown z-index 2 Increase size of dropdown Change delete button to simple X Add title on hover to result entries Change-Id: Ic274586e6bdf6e188efd147eb442660a99878e97 Signed-off-by: Brandon Lo --- src/static/css/base.css | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'src/static/css') diff --git a/src/static/css/base.css b/src/static/css/base.css index 1494e77..72ecc40 100644 --- a/src/static/css/base.css +++ b/src/static/css/base.css @@ -81,14 +81,18 @@ a[aria-expanded="true"] > i.rotate { top: 0; } -/* Dropdown for collaborators */ -#drop_results { - max-height: 10rem; +.z-2 { z-index: 2; } -#drop_results > li { - word-wrap: anywhere; +.mh-30vh { + max-height: 30vh; +} + +.overflow-ellipsis { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; } /* Graphing for networks */ -- cgit 1.2.3-korg