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.
This commit is contained in:
Petr Vobornik
2011-08-31 14:42:33 +02:00
committed by Endi S. Dewata
parent f59e8145fa
commit f6d36494fd

View File

@@ -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{