diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-11 15:32:01 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-11 15:32:01 +0000 |
| commit | 82cdbe7707c21314509133818e73a82831ab6700 (patch) | |
| tree | aa1e093eca2f78d089d3f8473ae78d23106acaca | |
| parent | 55ae47cbb3bc219c5b381b29643d43fbfe644203 (diff) | |
Set flexible width to login form fields (#1488418); remove IE7 warning
git-svn-id: https://svn.roundcube.net/trunk@6061 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 1 | ||||
| -rw-r--r-- | roundcubemail/skins/larry/styles.css | 9 | ||||
| -rw-r--r-- | roundcubemail/skins/larry/ui.js | 18 |
3 files changed, 9 insertions, 19 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index d1c52f15f..fa01e5fb1 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Set flexible width to login form fields (#1488418) - Force page reload if list columns changed in IE8 (#1487822) - Allow mass-removal of addresses from a group (#1487748) - Fix removing all contacts on import to LDAP addressbook diff --git a/roundcubemail/skins/larry/styles.css b/roundcubemail/skins/larry/styles.css index 1511d43b2..4868ed916 100644 --- a/roundcubemail/skins/larry/styles.css +++ b/roundcubemail/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; diff --git a/roundcubemail/skins/larry/ui.js b/roundcubemail/skins/larry/ui.js index dda5abd75..cf7ff5537 100644 --- a/roundcubemail/skins/larry/ui.js +++ b/roundcubemail/skins/larry/ui.js @@ -160,24 +160,6 @@ function rcube_mail_ui() new rcube_scroller('#directorylist-content', '#directorylist-header', '#directorylist-footer'); } } - /*** login page ***/ - else if (rcmail.env.task == 'login') { - if (bw.ie && bw.vendver < 8) { - var popup = $('<div>') - .addClass('readtext') - .html("Roundcube will not work well with the crappy browser ya' using. Get yourself a new internet browsing software and don't come back without!<p>Sincerly,<br/>the Roundcube Dev Team</p>") - .appendTo(document.body) - .dialog({ - dialogClass: 'alert', - closeOnEscape: true, - title: "No way, are you serious?", - close: function() { - popup.dialog('destroy').remove(); - }, - width: 450 - }); - } - } // turn a group of fieldsets into tabs $('.tabbed').each(function(idx, elem){ init_tabs(elem); }) |
