From a3882c059010a5dcb348a7f73f513290f493243d Mon Sep 17 00:00:00 2001 From: mwfarb Date: Thu, 8 Sep 2022 15:28:01 -0400 Subject: [PATCH] fix(build): increse color property hieght to be visible --- build/list.css | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/build/list.css b/build/list.css index dbec398c6..307ef0852 100755 --- a/build/list.css +++ b/build/list.css @@ -72,7 +72,7 @@ ul li.checked::before { } .edit:hover { - background-color: #AED6F1 ; + background-color: #AED6F1; color: black; } @@ -102,11 +102,11 @@ ul li.checked::before { } .objtypelist { - width: 100%; - height: 200px; - font-family: monospace; - font-size: 10px; - line-height: 90%; + width: 100%; + height: 200px; + font-family: monospace; + font-size: 10px; + line-height: 90%; } .infopanel { @@ -136,3 +136,8 @@ ul li.checked::before { text-decoration: none; pointer-events: none; } + +/* bootstrap color input height is 20px, with margins, only see 1px high border, override*/ +input[type="color"] { + height: 30px; +}