From f63f66d6819f4b096748df89d04977d4ce89a853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Doursenaud?= <rdoursenaud@gpcsolutions.fr> Date: Mon, 20 Jul 2015 20:31:19 +0200 Subject: [PATCH] Qual: prefer CSS centering --- htdocs/core/tpl/login.tpl.php | 8 ++++---- htdocs/theme/eldy/style.css.php | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/htdocs/core/tpl/login.tpl.php b/htdocs/core/tpl/login.tpl.php index 128c4be5de0..99db1ca9b18 100644 --- a/htdocs/core/tpl/login.tpl.php +++ b/htdocs/core/tpl/login.tpl.php @@ -50,7 +50,7 @@ $(document).ready(function () { </script> <?php } ?> -<div align="center"> +<div class="center"> <div class="login_vertical_align"> <form id="login" name="login" method="post" action="<?php echo $php_self; ?>"> @@ -167,7 +167,7 @@ if ($forgetpasslink || $helpcenterlink) if ($dol_use_jmobile) $moreparam.=(strpos($moreparam,'?')===false?'?':'&').'dol_use_jmobile='.$dol_use_jmobile; echo '<br>'; - echo '<div align="center" style="margin-top: 8px;">'; + echo '<div class="center" style="margin-top: 8px;">'; if ($forgetpasslink) { echo '<a class="alogin" href="'.DOL_URL_ROOT.'/user/passwordforgotten.php'.$moreparam.'">('; echo $langs->trans('PasswordForgotten'); @@ -194,7 +194,7 @@ if (isset($conf->file->main_authentication) && preg_match('/openid/',$conf->file //if (! empty($conf->global->MAIN_OPENIDURL_PERUSER)) $url= echo '<br>'; - echo '<div align="center" style="margin-top: 4px;">'; + echo '<div class="center" style="margin-top: 4px;">'; $url=$conf->global->MAIN_AUTHENTICATION_OPENID_URL; if (! empty($url)) print '<a class="alogin" href="'.$url.'">'.$langs->trans("LoginUsingOpenID").'</a>'; @@ -288,7 +288,7 @@ if (! empty($conf->google->enabled) && ! empty($conf->global->MAIN_GOOGLE_AD_CLI if (empty($conf->dol_use_jmobile)) { ?> - <div align="center"><br> + <div class="center"><br> <script type="text/javascript"><!-- google_ad_client = "<?php echo $conf->global->MAIN_GOOGLE_AD_CLIENT ?>"; google_ad_slot = "<?php echo $conf->global->MAIN_GOOGLE_AD_SLOT ?>"; diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php index 74c39d37909..8cacd34105e 100644 --- a/htdocs/theme/eldy/style.css.php +++ b/htdocs/theme/eldy/style.css.php @@ -418,6 +418,7 @@ textarea.centpercent { } .center { text-align: center; + margin: 0px auto; } .left { text-align: <?php print $left; ?>; @@ -931,8 +932,7 @@ form#login { text-shadow: 1px 1px 1px #FFF; } .login_table { - margin-left: 10px; - margin-right: 10px; + margin: 0px auto; /* Center */ padding-left:6px; padding-right:6px; padding-top:16px; -- GitLab