From 34860475835c6ccb5c3ebb08bce0b3b65e656ee1 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Thu, 13 Jan 2011 13:59:57 +0700 Subject: Increased icon size for certificate and Kerberos key status. The
  • tag used for status icon has been replaced with
    tag shaped like a circle. The size can be adjusted using CSS. --- install/static/ipa.css | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) (limited to 'install/static/ipa.css') diff --git a/install/static/ipa.css b/install/static/ipa.css index b89344263..38b68dd05 100644 --- a/install/static/ipa.css +++ b/install/static/ipa.css @@ -590,37 +590,35 @@ a.action-button-disabled { .strikethrough { text-decoration: line-through; } -.key-status-valid { - list-style-type: circle; - color: #008000; +.status-icon { + width: 0.5em; + height: 0.5em; + -webkit-border-radius: 0.5em; + -moz-border-radius: 0.5em; } -.key-status-missing { - list-style-type: circle; - color: #daa520; +.status-valid { + border: 0.2em solid #008000; } -.key-status-active { - list-style-type: disc; +.status-valid-active { + background-color: #008000; } -.certificate-status-valid { - list-style-type: circle; - color: #008000; +.status-revoked { + border: 0.2em solid #ff0000; } -.certificate-status-revoked { - list-style-type: circle; - color: #ff0000; +.status-revoked-active { + background-color: #ff0000; } -.certificate-status-missing { - list-style-type: circle; - color: #daa520; +.status-missing { + border: 0.2em solid #daa520; } -.certificate-status-active { - list-style-type: disc; +.status-missing-active { + background-color: #daa520; } dl.modal { -- cgit