diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-01-13 17:20:12 +0700 |
---|---|---|
committer | Endi Sukma Dewata <edewata@people01.fedoraproject.org> | 2011-01-15 04:55:16 +0000 |
commit | fb1f9ecf9ffa615653ac0fc62c84e27851835a6d (patch) | |
tree | 7db7d7e96d79bcb30f65b38f65c3015a3ea902b6 /install/static/service.js | |
parent | 6650dbf6a47f162db3e874c187fce693a362517f (diff) | |
download | freeipa.git-fb1f9ecf9ffa615653ac0fc62c84e27851835a6d.tar.gz freeipa.git-fb1f9ecf9ffa615653ac0fc62c84e27851835a6d.tar.xz freeipa.git-fb1f9ecf9ffa615653ac0fc62c84e27851835a6d.zip |
Certificate and Kerberos key status adjustments.
The OTP field has been moved into a separate row to avoid line
wrapping. The line height inside tables has been increased to
avoid overlapping buttons in certificate status panel.
Diffstat (limited to 'install/static/service.js')
-rw-r--r-- | install/static/service.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/install/static/service.js b/install/static/service.js index ad3a2fe6..62243c22 100644 --- a/install/static/service.js +++ b/install/static/service.js @@ -274,7 +274,9 @@ function service_provisioning_status_widget(spec) { that.widget_create(container); - var table = $('<table/>').appendTo(container); + var table = $('<table/>', { + 'class': 'kerberos-key-status' + }).appendTo(container); var tr = $('<tr/>').appendTo(table); |