From: urs_hunkler Date: Thu, 14 Jun 2007 07:04:47 +0000 (+0000) Subject: MDL-9745 - added missing input field type "file" to the alignment correction X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=c97535a6be4f7b05ce5e8616db1b68471ab3f1b0;p=moodle.git MDL-9745 - added missing input field type "file" to the alignment correction --- diff --git a/theme/standard/styles_ie6.css b/theme/standard/styles_ie6.css index 3f221d8d1b..8f2d85dd43 100755 --- a/theme/standard/styles_ie6.css +++ b/theme/standard/styles_ie6.css @@ -42,7 +42,7 @@ } form.mform input { - margin-left: expression((this.type=="text"||this.type=="password")?'-10px':'0'); + margin-left: expression((this.type=="text"||this.type=="file"||this.type=="password")?'-10px':'0'); } form.mform textarea { diff --git a/theme/standard/styles_ie7.css b/theme/standard/styles_ie7.css index 7d4e3aca17..56735455bc 100755 --- a/theme/standard/styles_ie7.css +++ b/theme/standard/styles_ie7.css @@ -43,6 +43,7 @@ } form.mform input[type=text], +form.mform input[type=file], form.mform input[type=password] { margin-left: -10px; }