From 9b5655607d1a777006721f12fc61de122e3ea4d6 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Thu, 7 May 2015 10:23:11 +0200 Subject: webui: fix empty table border in Firefox Firefox suffers from: https://bugzilla.mozilla.org/show_bug.cgi?id=409254 This is a workaround to fix it. Reviewed-By: Martin Babinsky --- install/ui/less/widgets.less | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install/ui/less/widgets.less b/install/ui/less/widgets.less index edfa005a7..cafd3bd96 100644 --- a/install/ui/less/widgets.less +++ b/install/ui/less/widgets.less @@ -89,4 +89,7 @@ .tooltip-inner { min-width: 200px; max-width: 400px; -} \ No newline at end of file +} + +// workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=409254 +tbody:empty { display: none; } \ No newline at end of file -- cgit