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 <mbabinsk@redhat.com>
This commit is contained in:
Petr Vobornik 2015-05-07 10:23:11 +02:00
parent 7ddcff3ef7
commit 9b5655607d

View File

@ -89,4 +89,7 @@
.tooltip-inner {
min-width: 200px;
max-width: 400px;
}
}
// workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=409254
tbody:empty { display: none; }