From 9ce2822b3dfc55a38ae7b03bcdd11f9ff93d95ee Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Thu, 30 Jan 2020 13:34:29 +0100 Subject: [PATCH] Fix border spacing for sidebar tags and routing tables The reset code for border spacing was removed in 5c933868dbff and led to minor artifacts in these two tables. --- app/assets/stylesheets/common.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index ae3b7c954..d3382eb3f 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -902,6 +902,7 @@ header .search_forms, padding: 5px 20px 10px 15px; width: 100%; border-collapse: separate; + border-spacing: 0; } div.direction { @@ -1026,6 +1027,7 @@ tr.turn:hover { border-radius: 3px; table-layout: fixed; border-collapse: separate; + border-spacing: 0; th, td { border-bottom: 1px solid $grey; -- 2.45.2