From cfdb0f455af0da4946334b6a8d2193a64b388c89 Mon Sep 17 00:00:00 2001 From: phl0 <github@florian-wolters.de> Date: Thu, 2 Mar 2023 12:16:37 +0100 Subject: [PATCH] Add transparent background for text box --- htdocs/public/css/main.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/htdocs/public/css/main.css b/htdocs/public/css/main.css index cdf54dd..ad3bb35 100755 --- a/htdocs/public/css/main.css +++ b/htdocs/public/css/main.css @@ -307,17 +307,20 @@ input[type=submit]:hover { #cordinates-container { clear: both; - padding-top:5px; + padding:5px; color: #4d4d4d; + background-color: rgba(255, 255, 255, 0.7); font-size: 11px; display: none; + min-width: 130px; } #status-container { - padding-top:5px; + padding:5px; white-space:nowrap; line-height: 20px; font-size: 11px; + background-color: rgba(255, 255, 255, 0.7); } @media screen and (min-width: 800px) { -- GitLab