From c395030777f525a2d43b0aa94d4eacd77218d65b Mon Sep 17 00:00:00 2001 From: skodak Date: Tue, 8 Jan 2008 07:33:48 +0000 Subject: [PATCH] MDL-11830 width applied to input fields only, that should solve the incorrect size of button; merged from MOODLE_19_STABLE --- blocks/login/block_login.php | 4 ++-- blocks/login/styles.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/blocks/login/block_login.php b/blocks/login/block_login.php index c6c7039a4b..e45f2f877a 100644 --- a/blocks/login/block_login.php +++ b/blocks/login/block_login.php @@ -45,10 +45,10 @@ class block_login extends block_base { $this->content->text .= "\n".'
'; - $this->content->text .= '
'; + $this->content->text .= '
'; $this->content->text .= '
'; - $this->content->text .= '
'; + $this->content->text .= '
'; $this->content->text .= '
'; $this->content->text .= '
'; diff --git a/blocks/login/styles.php b/blocks/login/styles.php index 9e70b07eb6..ef1e952399 100644 --- a/blocks/login/styles.php +++ b/blocks/login/styles.php @@ -6,8 +6,8 @@ display:inline; } -.block_login .loginform .c1 input { - width:6em; +.block_login .loginform .fld input { + width:5em; } .block_login .loginform label { -- 2.39.5