diff --git a/ChangeLog b/ChangeLog index 79b4ed2ce..7013b6362 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,10 @@ $Source$ 2006-05-15 Michal Čihař * scripts/setup.php: Compatibility with security tokens (bug #1488453). * scripts/setup.php: Fix detection of writable config (bug #1488447). + * css/phpmyadmin.css.php, libraries/auth/cookie.auth.lib.php, + themes/darkblue_orange/css/theme_right.css.php, + themes/original/css/theme_right.css.php: Not so wide login form (RFE + #1445541). 2006-05-14 Michal Čihař * libraries/common.lib.php: Fix reading database list with MySQL wildcards diff --git a/css/phpmyadmin.css.php b/css/phpmyadmin.css.php index 092109357..391a14da8 100644 --- a/css/phpmyadmin.css.php +++ b/css/phpmyadmin.css.php @@ -742,6 +742,16 @@ label.desc { width: 30em; float: ; } + +body.loginform { + text-align: center; +} + +body.loginform div.container { + text-align: ; + width: 30em; + margin: 0 auto; +} +
@@ -142,7 +143,8 @@ echo sprintf( $GLOBALS['strWelcome'],
' . "\n" + echo '' . "\n" + . ' ' . "\n" . ''; exit(); } @@ -234,6 +236,7 @@ if (uname.value == '') { + diff --git a/themes/darkblue_orange/css/theme_right.css.php b/themes/darkblue_orange/css/theme_right.css.php index d57037c1c..7a51571f4 100644 --- a/themes/darkblue_orange/css/theme_right.css.php +++ b/themes/darkblue_orange/css/theme_right.css.php @@ -1117,3 +1117,13 @@ label.desc { width: 30em; float: ; } + +body.loginform { + text-align: center; +} + +body.loginform div.container { + text-align: ; + width: 30em; + margin: 0 auto; +} diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 659d33673..042482661 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -1065,3 +1065,13 @@ label.desc { width: 30em; float: ; } + +body.loginform { + text-align: center; +} + +body.loginform div.container { + text-align: ; + width: 30em; + margin: 0 auto; +}