diff options
| author | thomascube <thomas@roundcube.net> | 2011-01-19 13:55:58 +0000 | 
|---|---|---|
| committer | thomascube <thomas@roundcube.net> | 2011-01-19 13:55:58 +0000 | 
| commit | 1c6c2c6dc2786d57e8c29de3fe83d70d09e71fd1 (patch) | |
| tree | fec9ea403d26b6466402476ab0a886a87b783cda | |
| parent | 4737e5ce237192abca8e267f5206d024f8c90b0e (diff) | |
Fix randomly disappearing folders list in IE (#1487704)
| -rw-r--r-- | CHANGELOG | 2 | ||||
| -rw-r--r-- | skins/default/iehacks.css | 5 | ||||
| -rw-r--r-- | skins/default/templates/addressbook.html | 1 | 
3 files changed, 8 insertions, 0 deletions
| @@ -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/skins/default/iehacks.css b/skins/default/iehacks.css index 4c0816ad8..b1adccc3c 100644 --- a/skins/default/iehacks.css +++ b/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/skins/default/templates/addressbook.html b/skins/default/templates/addressbook.html index 668b309a7..d486f2fe7 100644 --- a/skins/default/templates/addressbook.html +++ b/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=" " /> | 
