From fb1f9ecf9ffa615653ac0fc62c84e27851835a6d Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Thu, 13 Jan 2011 17:20:12 +0700 Subject: 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. --- install/static/host.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'install/static/host.js') diff --git a/install/static/host.js b/install/static/host.js index 2e82936be..76c5943cd 100644 --- a/install/static/host.js +++ b/install/static/host.js @@ -221,7 +221,9 @@ function host_provisioning_status_widget(spec) { that.widget_create(container); - var table = $('').appendTo(container); + var table = $('
', { + 'class': 'kerberos-key-status' + }).appendTo(container); var tr = $('').appendTo(table); @@ -262,12 +264,20 @@ function host_provisioning_status_widget(spec) { td = $('').appendTo(table); + + td = $('
').appendTo(tr); + tr = $('
').appendTo(tr); + + td = $('').appendTo(tr); + $('', { 'type': 'text', 'name': 'otp', - 'size': 10 + 'class': 'otp' }).appendTo(td); + td = $('').appendTo(tr); + $('', { 'type': 'button', 'name': 'enroll', -- cgit