From b33fe258b0de1506cb557ebf0510373c6d0dc3c9 Mon Sep 17 00:00:00 2001
From: Daniel Rudolf <github.com@daniel-rudolf.de>
Date: Sat, 9 Feb 2019 21:12:39 +0100
Subject: [PATCH] CSS: Fix border value order

---
 css/style.css | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/css/style.css b/css/style.css
index 331ba8b..a90d7fe 100644
--- a/css/style.css
+++ b/css/style.css
@@ -234,7 +234,7 @@ th {
     color: #333;
 }
 
-td, th {                                         border: solid 1px #ccc; }
+td, th {                                         border: 1px solid #ccc; }
 tr:not(:last-child) td, tr:not(:last-child) th { border-bottom: 0 none; }
 thead tr:last-child th {                         border-bottom: 0 none; }
 td:not(:last-child), th:not(:last-child) {       border-right: 0 none; }
@@ -302,7 +302,7 @@ blockquote {
 label, fieldset legend { font-weight: bold; }
 
 input:not([type="checkbox"]):not([type="radio"]), button, select, textarea, fieldset, fieldset legend {
-    border: solid 1px #ccc;
+    border: 1px solid #ccc;
     border-radius: 0.3em;
     background: #fff;
     -webkit-transition: none .2s ease-in;
-- 
GitLab