diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2012-06-08 16:38:17 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2012-06-21 12:46:59 +0200 |
commit | 1eab43d29244f6e0b8d6f3146317624715d84af7 (patch) | |
tree | 3c5d8a1c981d569e92b439684a53409ab3d5acbd /install/ui/ipa.css | |
parent | f298a20d27701cf617c5b146a2d22c9c94d85bc3 (diff) | |
download | freeipa.git-1eab43d29244f6e0b8d6f3146317624715d84af7.tar.gz freeipa.git-1eab43d29244f6e0b8d6f3146317624715d84af7.tar.xz freeipa.git-1eab43d29244f6e0b8d6f3146317624715d84af7.zip |
Separate reset password page
This patch adds separate reset password page. It is a complement to separate login page. It differentiate from reset password capabilities in Web UI's anauthorized dialog by not performing login. This is useful for users who wants only to reset the password and not to use Web UI. And also for users who are using the separate login page.
https://fedorahosted.org/freeipa/ticket/2755
Diffstat (limited to 'install/ui/ipa.css')
-rw-r--r-- | install/ui/ipa.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/install/ui/ipa.css b/install/ui/ipa.css index c69fc80d..2ce8494a 100644 --- a/install/ui/ipa.css +++ b/install/ui/ipa.css @@ -1569,6 +1569,10 @@ span.sshkey-status, a.sshkey-set { width: 450px; } +.form-box { + padding: 1em 2em; +} + #error-box, .error-box { -moz-border-radius: 0.3em 0.3em 0.3em 0.3em; -webkit-border-radius: 0.3em 0.3em 0.3em 0.3em; @@ -1578,6 +1582,15 @@ span.sshkey-status, a.sshkey-set { padding: 1em 2em; } +#success-box, .success-box { + -moz-border-radius: 0.3em 0.3em 0.3em 0.3em; + -webkit-border-radius: 0.3em 0.3em 0.3em 0.3em; + background-color: #FFEB80; + border: 1px solid #FFDE2E; + margin: 0 2em 1em 2em; + padding: 1em 2em; +} + #formwindow h2 { background-color: #F0F0F0; font-size: 1.6em; @@ -1619,7 +1632,7 @@ span.sshkey-status, a.sshkey-set { box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2); margin-left: 15px; padding: 2px 10px; - width: 248px; + width: 210px; } #login li label, #modal li label { |