Re: [Freeipa-devel] [PATCH] 830 webui: fix empty table border in Firefox

2015-05-20 Thread Petr Vobornik

On 05/19/2015 06:01 PM, Martin Babinsky wrote:

On 05/15/2015 11:01 AM, Petr Vobornik wrote:

Firefox suffers from: https://bugzilla.mozilla.org/show_bug.cgi?id=409254

This is a workaround to fix it.



ACK



Pushed to master: 9b5655607d1a777006721f12fc61de122e3ea4d6
--
Petr Vobornik

--
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code


Re: [Freeipa-devel] [PATCH] 830 webui: fix empty table border in Firefox

2015-05-19 Thread Martin Babinsky

On 05/15/2015 11:01 AM, Petr Vobornik wrote:

Firefox suffers from: https://bugzilla.mozilla.org/show_bug.cgi?id=409254

This is a workaround to fix it.



ACK

--
Martin^3 Babinsky

--
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code


[Freeipa-devel] [PATCH] 830 webui: fix empty table border in Firefox

2015-05-15 Thread Petr Vobornik

Firefox suffers from: https://bugzilla.mozilla.org/show_bug.cgi?id=409254

This is a workaround to fix it.
--
Petr Vobornik
From 8743615886ed3f10dddbf78bc0152f3b7fbdafa2 Mon Sep 17 00:00:00 2001
From: Petr Vobornik 
Date: Thu, 7 May 2015 10:23:11 +0200
Subject: [PATCH] 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.
---
 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 edfa005a7231d8c57338d4d07983126612148ec9..cafd3bd96264c0c1ad86a773b8ffd7f15874575f 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
-- 
2.1.0

-- 
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code