summaryrefslogtreecommitdiffstats
path: root/install/static/ipa.css
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-01-13 13:59:57 +0700
committerEndi S. Dewata <edewata@redhat.com>2011-01-13 21:46:05 -0500
commit34860475835c6ccb5c3ebb08bce0b3b65e656ee1 (patch)
treec96d767e08a03b6b8a6d9e8935f60df2aff277b0 /install/static/ipa.css
parent406a52edae7d49e067872a7af012c1f1f6bfc812 (diff)
downloadfreeipa-34860475835c6ccb5c3ebb08bce0b3b65e656ee1.tar.gz
freeipa-34860475835c6ccb5c3ebb08bce0b3b65e656ee1.tar.xz
freeipa-34860475835c6ccb5c3ebb08bce0b3b65e656ee1.zip
Increased icon size for certificate and Kerberos key status.
The <li> tag used for status icon has been replaced with <div> tag shaped like a circle. The size can be adjusted using CSS.
Diffstat (limited to 'install/static/ipa.css')
-rw-r--r--install/static/ipa.css36
1 files changed, 17 insertions, 19 deletions
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 {