From 9afa0420b0d34d8484a71ae278e4dbd1630a035a Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Thu, 11 Feb 2021 11:15:37 -0500 Subject: Input and settings fixes --- styles/input.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'styles') diff --git a/styles/input.css b/styles/input.css index 42656a0..5e898ec 100644 --- a/styles/input.css +++ b/styles/input.css @@ -215,7 +215,14 @@ div.input-select display: block; position: absolute; + z-index: 0; + pointer-events: none; + + overflow-y: auto; + overflow-x: hidden; + + max-height: 8em; } div.input-select > div @@ -231,10 +238,11 @@ div.input-select > div[selected=true] div.input-container:focus > div.input-select { - pointer-events: all; - transform: translate(0, 2em); + pointer-events: all; + z-index: 1; + border: 2px solid var(--input-border-select-active); background-color: var(--input-bg-select-active); } @@ -347,7 +355,7 @@ div.input-container[type=file]::after div.input-container[type=radio]::before { display: block; - content: 'Select one'; + content: attr(data-prompt) ":"; transition-duration: 0.2s; } -- cgit v1.2.3