From 887f02a4879d010278b3e64eae2525382172fb4c Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Wed, 31 Aug 2011 14:42:33 +0200 Subject: Attributes table not scrollable https://fedorahosted.org/freeipa/ticket/1739 The attributes table (IPA.attributes_widget) used in Permissions, Self-Service Permissions, and Delegations is supposed to be short but scrollable. In Firefox 3.6 it works fine, but in Firefox 6.0 it appears as a long non-scrollable table which makes it more difficult to use. --- install/ui/ipa.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/install/ui/ipa.css b/install/ui/ipa.css index 705e9a11e..e341b4112 100644 --- a/install/ui/ipa.css +++ b/install/ui/ipa.css @@ -1035,12 +1035,17 @@ span.main-separator{ } +.aci-attribute-table thead{ + display: block; +} + .aci-attribute-table tbody{ - width: 20em; + width: 100%; height:10em; overflow:auto; border-bottom: 1px solid #8a8a8a; + display: block; } .aci-attribute-table th.aci-attribute-column{ -- cgit