diff options
author | Endi S. Dewata <edewata@redhat.com> | 2010-11-16 18:10:40 -0600 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-11-18 10:12:18 -0500 |
commit | 5da8313b668340494f06afe6d3459f368948588f (patch) | |
tree | c19b19cf32bd8487cf42f21348a1ca97f8fe2f6c /install/static/ipa.css | |
parent | b42271c47d0e672f1a88585f5a87f5db8522f634 (diff) | |
download | freeipa-5da8313b668340494f06afe6d3459f368948588f.tar.gz freeipa-5da8313b668340494f06afe6d3459f368948588f.tar.xz freeipa-5da8313b668340494f06afe6d3459f368948588f.zip |
Service and Host Provisioning
The service and host details pages have been modified to display Kerberos
key provisioning status and to provide a way to unprovision. The host
enrollment via OTP has not been implemented yet.
The ipa_details_field has been modified to remove any old <dd> tags it
created in the previous load operation. This is to support other widgets
that need to perform load operation without removing <dd> tags.
The certificate_status_panel has been converted into a widget. The host
entity has been rewritten using the new framework.
The unit tests has been updated.
Diffstat (limited to 'install/static/ipa.css')
-rw-r--r-- | install/static/ipa.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/install/static/ipa.css b/install/static/ipa.css index f7817f19d..9183b9f95 100644 --- a/install/static/ipa.css +++ b/install/static/ipa.css @@ -411,6 +411,20 @@ span.main-separator{ .strikethrough { text-decoration: line-through; } +.key-status-valid { + list-style-type: circle; + color: #008000; +} + +.key-status-missing { + list-style-type: circle; + color: #daa520; +} + +.key-status-active { + list-style-type: disc; +} + .certificate-status-valid { list-style-type: circle; color: #008000; |