From adc6f72e972f1bb3db337ff6184310a5d2501f17 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Sat, 15 Sep 2018 17:04:20 +0200 Subject: [PATCH] [style] Fix first letter of labels not capitalized This error is caused by setting label::before { content: " "; }, which makes the first letter a whitespace on all labels, neccessary for browsers that doesn't support the grid layout. This commit clears the content if the browser supports the grid layout, properly capitalizing labels again. If a browser doesn't support grid layout, labels stay as they are provided by the bridge. --- static/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/style.css b/static/style.css index 659f80ea..fa70f2d9 100644 --- a/static/style.css +++ b/static/style.css @@ -202,6 +202,10 @@ form { text-align: right; } + .parameters label::before { + content: none; + } + .parameters input[type="text"], .parameters input[type="number"], .parameters input[type="checkbox"],