From 72f804db02de804be7a1082493aa5233b10dce2b Mon Sep 17 00:00:00 2001 From: Marius Cramer <m.cramer@pixcept.de> Date: Thu, 08 Jan 2015 06:15:36 -0500 Subject: [PATCH] Layout fixes: field sizes --- interface/web/admin/templates/server_config_rescue_edit.htm | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/interface/web/admin/templates/server_config_rescue_edit.htm b/interface/web/admin/templates/server_config_rescue_edit.htm index b523e69..ecab296 100644 --- a/interface/web/admin/templates/server_config_rescue_edit.htm +++ b/interface/web/admin/templates/server_config_rescue_edit.htm @@ -6,32 +6,32 @@ <legend>Rescue</legend> <div class="form-group"> - <p class="label" style="width:300px">{tmpl_var name='try_rescue_txt'}</p> - <div class="multiField" style="width:100px"> + <label class="col-sm-3 control-label">{tmpl_var name='try_rescue_txt'}</label> + <div class="col-sm-9"> {tmpl_var name='try_rescue'} </div> </div> <div class="form-group"> - <p class="label" style="width:300px">{tmpl_var name='do_not_try_rescue_httpd_txt'}</p> - <div class="multiField" style="width:100px"> + <label class="col-sm-3 control-label">{tmpl_var name='do_not_try_rescue_httpd_txt'}</label> + <div class="col-sm-9"> {tmpl_var name='do_not_try_rescue_httpd'} </div> </div> <div class="form-group"> - <p class="label" style="width:300px">{tmpl_var name='do_not_try_rescue_mongodb_txt'}</p> - <div class="multiField" style="width:100px"> + <label class="col-sm-3 control-label">{tmpl_var name='do_not_try_rescue_mongodb_txt'}</label> + <div class="col-sm-9"> {tmpl_var name='do_not_try_rescue_mongodb'} </div> </div> <div class="form-group"> - <p class="label" style="width:300px">{tmpl_var name='do_not_try_rescue_mysql_txt'}</p> - <div class="multiField" style="width:100px"> + <label class="col-sm-3 control-label">{tmpl_var name='do_not_try_rescue_mysql_txt'}</label> + <div class="col-sm-9"> {tmpl_var name='do_not_try_rescue_mysql'} </div> </div> <div class="form-group"> - <p class="label" style="width:300px">{tmpl_var name='do_not_try_rescue_mail_txt'}</p> - <div class="multiField" style="width:100px"> + <label class="col-sm-3 control-label">{tmpl_var name='do_not_try_rescue_mail_txt'}</label> + <div class="col-sm-9"> {tmpl_var name='do_not_try_rescue_mail'} </div> </div> -- Gitblit v1.9.1