vbenincasa
2009-09-23 df2a51e3fae66d3b32a634d863af79d0d9a1d77f
- Replace the attribute "size" with "width" in CSS from login input fields (#1486155).
- Fix an extra margin in login form (IE6/7)

3 files modified
12 ■■■■■ changed files
skins/default/common.css 5 ●●●●● patch | view | raw | blame | history
skins/default/iehacks.css 5 ●●●●● patch | view | raw | blame | history
skins/default/templates/login.html 2 ●●● patch | view | raw | blame | history
skins/default/common.css
@@ -517,6 +517,11 @@
  padding: 20px 10px 10px 10px;
}
#rcmloginuser, #rcmloginpwd, #rcmloginhost
{
  width: 200px;
}
#console
{
  opacity: 0.8;
skins/default/iehacks.css
@@ -8,6 +8,11 @@
  background-color: expression(this.type=='checkbox' || this.type=='radio' ? 'transparent' : '#ffffff');
}
#login-form form
{
  margin-top: 0;
}
.pagenav a.buttonPas
{
  filter: alpha(opacity=35);
skins/default/templates/login.html
@@ -16,7 +16,7 @@
<div class="boxcontent">
<form name="form" action="./" method="post">
<roundcube:object name="loginform" form="form" autocomplete="off" size="30" />
<roundcube:object name="loginform" form="form" autocomplete="off" />
<p style="text-align:center;"><input type="submit" class="button mainaction" value="<roundcube:label name='login' />" /></p>