From 08823a4d2ad26f11bf8b58e5a8b9d6993b72e9d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20P=C3=A4ssler?= Date: Wed, 22 Jul 2020 17:27:05 +0200 Subject: [PATCH] fix some broken borders --- client/style.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/client/style.css b/client/style.css index 5532480..53aaa32 100755 --- a/client/style.css +++ b/client/style.css @@ -155,6 +155,12 @@ tbody tr:hover td { color: black; margin-top: 8px; } + input[type="text"] { + border: 1px solid transparent; + } + input[type="text"]:focus { + border-bottom: 1px solid rgba(0, 0, 0, .2); + } .btn, .selector label { @@ -164,9 +170,11 @@ tbody tr:hover td { padding: 3px; height: 32px; display: inline-block; - border-right: 1px solid rgba(0, 0, 0, .2); user-select: none; } + .selector label:not(:last-child) { + border-right: 1px solid rgba(0, 0, 0, .2); + } .selector { margin-top: 8px;