diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-01-19 13:55:58 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-01-19 13:55:58 +0000 |
| commit | 8bce101d20411f8ba5e3ed8a1d445a622c2137a8 (patch) | |
| tree | bad20c8256559c70016b13506b0dcd08b77e85dc | |
| parent | 5e39876c1d775bfb08ff099a019a358ce49712ca (diff) | |
Fix randomly disappearing folders list in IE (#1487704)
git-svn-id: https://svn.roundcube.net/trunk@4431 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 2 | ||||
| -rw-r--r-- | roundcubemail/skins/default/iehacks.css | 5 | ||||
| -rw-r--r-- | roundcubemail/skins/default/templates/addressbook.html | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 3661147ad..5054fd969 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -1,6 +1,8 @@ CHANGELOG Roundcube Webmail =========================== +- Fix randomly disappearing folders list in IE (#1487704) +- Fix list column add/removal in IE (#1487703) - Fix login redirect issues (#1487686) - Require PHP 5.2.1 or greater - Fix %h/%z variables in username_domain option (#1487701) diff --git a/roundcubemail/skins/default/iehacks.css b/roundcubemail/skins/default/iehacks.css index 4c0816ad8..b1adccc3c 100644 --- a/roundcubemail/skins/default/iehacks.css +++ b/roundcubemail/skins/default/iehacks.css @@ -237,6 +237,11 @@ table.records-table thead tr td margin-top: 2px; } +#directorylistbox div +{ + min-height: 0; +} + .contactfieldgroup legend { padding: 0 0 0.5em 0; diff --git a/roundcubemail/skins/default/templates/addressbook.html b/roundcubemail/skins/default/templates/addressbook.html index 668b309a7..d486f2fe7 100644 --- a/roundcubemail/skins/default/templates/addressbook.html +++ b/roundcubemail/skins/default/templates/addressbook.html @@ -40,6 +40,7 @@ <roundcube:object name="directorylist" id="directorylist" /> <roundcube:object name="groupslist" id="contactgroupslist" /> </div> +<!--[if lte IE 7]><div></div><![endif]--> <div class="boxfooter"> <roundcube:button command="group-create" type="link" title="newcontactgroup" class="buttonPas addgroup" classAct="button addgroup" content=" " /> <roundcube:button name="groupmenulink" id="groupmenulink" type="link" title="groupactions" class="button groupactions" onclick="rcmail_ui.show_popup('groupmenu');return false" content=" " /> |
