ctucx.git: oeffisearch

[nimlang] fast and simple tripplanner

commit 08823a4d2ad26f11bf8b58e5a8b9d6993b72e9d0
parent 4dac33246ceba64cd88049c2eaec81c717c64a42
Author: Milan Pässler <me@pbb.lc>
Date: Wed, 22 Jul 2020 17:27:05 +0200

fix some broken borders
1 file changed, 9 insertions(+), 1 deletion(-)
M
client/style.css
|
10
+++++++++-
diff --git 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;