From 8ceb0824027750b720f7788e44ed0deb87be6f08 Mon Sep 17 00:00:00 2001 From: Marius Cramer <m.cramer@pixcept.de> Date: Wed, 07 Jan 2015 07:52:03 -0500 Subject: [PATCH] - Layout fixes - Included new icons and buttons - Layout scaling improved (up to 1260px width) --- interface/web/tools/templates/import_ispconfig.htm | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/interface/web/tools/templates/import_ispconfig.htm b/interface/web/tools/templates/import_ispconfig.htm index 2385eeb..ecd9574 100644 --- a/interface/web/tools/templates/import_ispconfig.htm +++ b/interface/web/tools/templates/import_ispconfig.htm @@ -10,19 +10,19 @@ <div class="form-group"> <label class="col-sm-3 control-label">Remote API URL</label> <div class="col-sm-9"> - <div class="col-sm-9"><input type="text" id="remote_server" value="{tmpl_var name='remote_server'}" name="remote_server" /> (e.g. https://www.example.com:8080/remote/ ) + <div class="col-sm-9"><input class="form-control" type="text" id="remote_server" value="{tmpl_var name='remote_server'}" name="remote_server" /> (e.g. https://www.example.com:8080/remote/ ) </div></div> </div> <div class="form-group"> <label class="col-sm-3 control-label">Remote User</label> <div class="col-sm-9"> - <div class="col-sm-9"><input type="text" id="remote_user" value="{tmpl_var name='remote_user'}" name="remote_user" /> + <div class="col-sm-9"><input class="form-control" type="text" id="remote_user" value="{tmpl_var name='remote_user'}" name="remote_user" /> </div></div> </div> <div class="form-group"> <label class="col-sm-3 control-label">Remote password</label> <div class="col-sm-9"> - <div class="col-sm-9"><input type="text" id="remote_password" value="{tmpl_var name='remote_password'}" name="remote_password" /> + <div class="col-sm-9"><input class="form-control" type="text" id="remote_password" value="{tmpl_var name='remote_password'}" name="remote_password" /> </div></div> </div> @@ -45,37 +45,37 @@ <div class="form-group"> <label class="col-sm-3 control-label">{tmpl_var name="import_mailbox_txt"}</label> <div class="col-sm-9"> - <div class="col-sm-9"><input type="checkbox" id="import_mailbox" value="1" name="import_mailbox" checked="checked" /> + <div class="col-sm-9"><input class="form-control" type="checkbox" id="import_mailbox" value="1" name="import_mailbox" checked="checked" /> </div></div> </div> <div class="form-group"> <label class="col-sm-3 control-label">{tmpl_var name="import_user_filter_txt"}</label> <div class="col-sm-9"> - <div class="col-sm-9"><input type="checkbox" id="import_user_filter" value="1" name="import_user_filter" checked="checked" /> + <div class="col-sm-9"><input class="form-control" type="checkbox" id="import_user_filter" value="1" name="import_user_filter" checked="checked" /> </div></div> </div> <div class="form-group"> <label class="col-sm-3 control-label">{tmpl_var name="import_spamfilter_txt"}</label> <div class="col-sm-9"> - <div class="col-sm-9"><input type="checkbox" id="import_spamfilter" value="1" name="import_spamfilter" checked="checked" /> + <div class="col-sm-9"><input class="form-control" type="checkbox" id="import_spamfilter" value="1" name="import_spamfilter" checked="checked" /> </div></div> </div> <div class="form-group"> <label class="col-sm-3 control-label">{tmpl_var name="import_alias_txt"}</label> <div class="col-sm-9"> - <div class="col-sm-9"><input type="checkbox" id="import_alias" value="1" name="import_alias" checked="checked" /> + <div class="col-sm-9"><input class="form-control" type="checkbox" id="import_alias" value="1" name="import_alias" checked="checked" /> </div></div> </div> <div class="form-group"> <label class="col-sm-3 control-label">{tmpl_var name="import_forward_txt"}</label> <div class="col-sm-9"> - <div class="col-sm-9"><input type="checkbox" id="import_forward" value="1" name="import_forward" checked="checked" /> + <div class="col-sm-9"><input class="form-control" type="checkbox" id="import_forward" value="1" name="import_forward" checked="checked" /> </div></div> </div> <div class="form-group"> <label class="col-sm-3 control-label">{tmpl_var name="import_aliasdomain_txt"}</label> <div class="col-sm-9"> - <div class="col-sm-9"><input type="checkbox" id="import_aliasdomain" value="1" name="import_aliasdomain" checked="checked" /> + <div class="col-sm-9"><input class="form-control" type="checkbox" id="import_aliasdomain" value="1" name="import_aliasdomain" checked="checked" /> </div></div> </div> -- Gitblit v1.9.1