diff options
author | thomascube <thomas@roundcube.net> | 2012-04-11 15:32:01 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-04-11 15:32:01 +0000 |
commit | 4dbc961b116f02f85d87d6a51446ba4b64bbc1ba (patch) | |
tree | d131803c0aa2357eef80b84052e423ee1d0f15ad /skins/larry/styles.css | |
parent | c97c5756710f651873e4e7c600d46fba917d43c7 (diff) |
Set flexible width to login form fields (#1488418); remove IE7 warning
Diffstat (limited to 'skins/larry/styles.css')
-rw-r--r-- | skins/larry/styles.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/skins/larry/styles.css b/skins/larry/styles.css index 1511d43b2..4868ed916 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -1187,12 +1187,13 @@ ul.proplist li { } #login-form td.input { + width: 80%; padding: 8px; } #login-form input[type="text"], #login-form input[type="password"] { - width: 24em; + width: 100%; border-color: #666; } @@ -1229,7 +1230,13 @@ ul.proplist li { background: linear-gradient(top, #dcdcdc 0%, #f9f9f9 100%); } +#login-form form table { + width: 98%; +} + #login-form td.title { + width: 20%; + white-space: nowrap; color: #cecece; text-shadow: 0px 1px 1px black; text-align: right; |