summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2011-08-31 14:42:33 +0200
committerEndi S. Dewata <edewata@redhat.com>2011-08-31 19:37:19 +0000
commitf6d36494fd0f1d421e9c69f3cc492f9eee9ab6af (patch)
tree467e59c89ae7e49f2480e3cd3538310ee3adadf1
parentf59e8145fa0ee131aafa1ce58e4ac729240e3418 (diff)
downloadfreeipa-f6d36494fd0f1d421e9c69f3cc492f9eee9ab6af.tar.gz
freeipa-f6d36494fd0f1d421e9c69f3cc492f9eee9ab6af.tar.xz
freeipa-f6d36494fd0f1d421e9c69f3cc492f9eee9ab6af.zip
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.
-rw-r--r--install/ui/ipa.css7
1 files changed, 6 insertions, 1 deletions
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{