Author Topic: Larry skin: in Internet Explorer Folders Box and mail dissapear  (Read 3945 times)

Offline simon86

  • Newbie
  • *
  • Posts: 1
Larry skin: in Internet Explorer Folders Box and mail dissapear
« on: September 23, 2012, 06:50:32 AM »
Hellow. I have problem with new roundcube in Internet Explorer. When I mouse over the title of message everything disappear. Its happen only when i mouse over the tittle. When I move mouse on sender or date of send message it is not happend. Someon knew what is it???? Printscreen:  http://postimage.org/image/t9v61vgpn/

I had prolems also with Adress Book. It was look like on print screen too but when i add to /roundcube/skins/larry/ui.js code :
Code: [Select]
if (rcmail.env.action == 'show' || rcmail.env.action == 'preview') {
         layout_messageview();
         rcmail.addEventListener('aftershow-headers', function() { layout_messageview(); });
         rcmail.addEventListener('afterhide-headers', function() { layout_messageview(); });
         $('#previewheaderstoggle').click(function(e){ toggle_preview_headers(this); return false });
problem fixed.


EDIT:

i doing this:
1) Add managesieve plugins to active plugins - it fix disappear folders box and mail, now it look ok on main site
2) In /roundcube/program/js/list.js   i delete code
Code: [Select]
$(document.activeElement).blur();
3) In /roundcube/skins/larry/ui.js  i back to original code (delete code:
 
Code: [Select]
if (rcmail.env.action == 'show' || rcmail.env.action == 'preview') {
         layout_messageview();
         rcmail.addEventListener('aftershow-headers', function() { layout_messageview(); });
         rcmail.addEventListener('afterhide-headers', function() { layout_messageview(); });
         $('#previewheaderstoggle').click(function(e){ toggle_preview_headers(this); return false });
becouse it make othere bugs like unable to click add an attachment in new mail.


So I have now 2 problems.
1) Adress book dont show -> http://postimage.org/image/44boaxy1z/
2) Message view is not good. It look like here -> http://s9.postimage.org/58zo586qn/image.png  and if i click down arrow it look like here -> http://postimage.org/image/pupvpxnvd/


Please help!




I fixed the problem!!!!!!!
When i delete
Code: [Select]
layout_messageview();
and
Code: [Select]
if (rcmail.env.action == '') {
        new rcube_splitter({ id:'addressviewsplitterd', p1:'#addressview-left', p2:'#addressview-right',
          orientation:'v', relative:true, start:226, min:150, size:12, render:resize_leftcol }).init();
        new rcube_splitter({ id:'addressviewsplitter', p1:'#addresslist', p2:'#contacts-box',
          orientation:'v', relative:true, start:286, min:270, size:12 }).init();

        new rcube_scroller('#directorylist-content', '#directorylist-header', '#directorylist-footer');
      }
everything is fine and work like i want!!!!! Ufff...
« Last Edit: September 23, 2012, 02:15:01 PM by simon86 »

Offline bigdessert

  • Newbie
  • *
  • Posts: 5
Re: Larry skin: in Internet Explorer Folders Box and mail dissapear
« Reply #1 on: October 04, 2012, 09:45:07 AM »
I am also seeing this issue. I have tried to make the edits you suggest, but still have it happening. Can anyone add more insight to this issue. It only seems to happen in IE7 browser.