From 82733f321eecdc0935eae07fa16dccce618cd8e2 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 13 Jan 2020 16:01:50 +0100 Subject: [PATCH] css: Fix collapsed border spacing in FF in list views fixes #4043 --- modules/monitoring/public/css/tables.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/monitoring/public/css/tables.less b/modules/monitoring/public/css/tables.less index dffb19961..e851f6c88 100644 --- a/modules/monitoring/public/css/tables.less +++ b/modules/monitoring/public/css/tables.less @@ -238,7 +238,8 @@ width: 100%; tr[href] { - -webkit-transform: translate3d(0,0,0); /* Fixes Safari hover bug in history table rows */ + -webkit-transform: translate3d(0,0,0); /* Without this, hovering in Safari is broken in history table rows */ + -moz-transform: none; /* Firefox collapses border spacing due to the above */ } tr[href].active {