diff options
author | Endi S. Dewata <edewata@redhat.com> | 2010-12-07 01:51:51 -0600 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-12-09 15:51:06 -0500 |
commit | db822955c2b61b31ba96213ec88c14c2b8d827bc (patch) | |
tree | e2c455e8919077468674882b8b0555b8f42b44b3 /install/static/ipa.css | |
parent | 5b7abefb42bb2a962caab444ff2557ca78732f63 (diff) | |
download | freeipa-db822955c2b61b31ba96213ec88c14c2b8d827bc.tar.gz freeipa-db822955c2b61b31ba96213ec88c14c2b8d827bc.tar.xz freeipa-db822955c2b61b31ba96213ec88c14c2b8d827bc.zip |
SUDO adjustments
The SUDO rule details facet has been updated to support the latest UI
spec. The facet consists of 5 sections: general, users, hosts, commands,
and run-as.
The general section contains the SUDO rule description and status. If
the status is changed, the sudorule-enable/disable will be invoked.
The other sections contain radio buttons for the association category
and tables for the members. When a member is added or removed, the
category will be adjusted appropriately. If the category is changed to
'all', 'allow', or 'deny', all members will be removed.
The last section is currently not working because backend support is
not yet available.
The adder dialog boxes for users, groups, and hosts has been modified
to accept external identities. The layout for the base adder dialog
was updated. The base dialog class was updated to support templates.
The SUDO dialog boxes were implemented using templates. New CSS
classes were added to ipa.css.
The HBAC rule details facet has been updated as well.
Diffstat (limited to 'install/static/ipa.css')
-rw-r--r-- | install/static/ipa.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/install/static/ipa.css b/install/static/ipa.css index 7a3f3e89a..be695a0f2 100644 --- a/install/static/ipa.css +++ b/install/static/ipa.css @@ -1,6 +1,7 @@ /* Authors: * Pavel Zuna <pzuna@redhat.com> * Adam Young <ayoung@redhat.com> + * Endi Sukma Dewata <edewata@redhat.com> * * Copyright (C) 2010 Red Hat */ @@ -479,3 +480,70 @@ dl.modal dd { .ui-widget-content { border:0; } + +table.scrollable thead { + display: block; +} + +table.scrollable tbody { + display: block; + overflow: auto; +} + +.adder-dialog-filter { + height: 25px; +} + +.adder-dialog-filter { + height: 25px; +} + +.adder-dialog-results { + position: relative; + height: 200px; +} + +.adder-dialog-available { + border: 1px solid black; + position: absolute; + top: 0px; + left: 0px; + bottom: 0px; + width: 250px; +} + +.adder-dialog-buttons { + position: absolute; + top: 15px; + left: 250px; + right: 250px; + bottom: 0px; + text-align: center; +} + +.adder-dialog-selected { + border: 1px solid black; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + width: 250px; +} + +.adder-dialog-internal { + border: 1px solid black; + position: absolute; + top: 0px; + left: 0px; + bottom: 45px; + width: 250px; +} + +.adder-dialog-external { + border: 1px solid black; + position: absolute; + left: 0px; + bottom: 0px; + width: 250px; + height: 40px; +}
\ No newline at end of file |