dialog related bugfixes; reposition infobox
This commit is contained in:
parent
727b0e5685
commit
8df9005793
|
@ -232,7 +232,7 @@
|
|||
|
||||
print "<div class=\"dlgSecCont\">";
|
||||
|
||||
print "<input onkeypress=\"return filterCR(event, labelEditSave)\"
|
||||
print "<input onkeypress=\"return filterCR(event, addLabel)\"
|
||||
onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
|
||||
onchange=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
|
||||
name=\"description\" size=\"30\" value=\"$description\">";
|
||||
|
@ -352,7 +352,7 @@
|
|||
|
||||
print "<div class=\"dlgSecCont\">";
|
||||
|
||||
print "<input onkeypress=\"return filterCR(event, filterEditSave)\"
|
||||
print "<input onkeypress=\"return filterCR(event, createFilter)\"
|
||||
onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
|
||||
onchange=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
|
||||
name=\"reg_exp\" size=\"30\" value=\"$reg_exp\">";
|
||||
|
|
|
@ -92,7 +92,7 @@
|
|||
$expr = str_replace(";", "", $expr);
|
||||
|
||||
if (!$expr) {
|
||||
print "<div>Error: SQL expression is blank.</div>";
|
||||
print "<p>".__("Error: SQL expression is blank.")."</p>";
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
print "<div class=\"dlgSecCont\">";
|
||||
|
||||
print "<input size=\"30\" style=\"font-size : 16px\"
|
||||
onkeypress=\"return filterCR(event)\" $sel_disabled
|
||||
onkeypress=\"return filterCR(event, userEditSave)\" $sel_disabled
|
||||
name=\"login\" value=\"$login\">";
|
||||
|
||||
print "</div>";
|
||||
|
@ -52,7 +52,7 @@
|
|||
print "<br/>";
|
||||
|
||||
print __('Change password to') .
|
||||
" <input size=\"20\" onkeypress=\"return filterCR(event)\"
|
||||
" <input size=\"20\" onkeypress=\"return filterCR(event, userEditSave)\"
|
||||
name=\"password\">";
|
||||
|
||||
print "</div>";
|
||||
|
@ -61,7 +61,7 @@
|
|||
print "<div class=\"dlgSecCont\">";
|
||||
|
||||
print __('E-mail: ').
|
||||
" <input size=\"30\" name=\"email\" onkeypress=\"return filterCR(event)\"
|
||||
" <input size=\"30\" name=\"email\" onkeypress=\"return filterCR(event, userEditSave)\"
|
||||
value=\"$email\">";
|
||||
|
||||
print "</div>";
|
||||
|
|
|
@ -589,7 +589,7 @@ html>body #infoBox {
|
|||
background-image : url("images/shadow.png");
|
||||
background-position : bottom right;
|
||||
left : 25%;
|
||||
top : 100px;
|
||||
top : 70px;
|
||||
width : 50%;
|
||||
z-index : 5;
|
||||
position : absolute;
|
||||
|
|
Loading…
Reference in New Issue