Roundcube Community Forum

 

MVISION - Updated and Upgraded!! v2

Started by youds, May 10, 2008, 11:12:02 PM

Previous topic - Next topic

malikhemani

Thank you. I search but looks like I overlooked that post.

Take Care,
Malik M. Hemani
Graphic Stylus | Print Stylus
[email protected]

Visit our latest specials at //www.graphicstylus.net | //www.printstylus.net

s5n

Wow, Great work!

I just changed some things in the code to fit my needs (size for folder- and messagelist to get more size for the message itself).

But there's one thing I wondering about: there is no way to scroll to the right if the message contains much more characters than it should. So sometimes I can't read a message, because the text disappears behind the right edge. How can I fix this?

Cheers s5n

woehrl01

#62
@s5n:

Edit mvision2_en/mail.css:

Version 1:


Change:
div.message-part
{
  padding: 8px;
  padding-top: 10px;
  overflow: hidden;
}

to:

div.message-part
{
  padding: 8px;
  padding-top: 10px;
  overflow: auto;
}

Version 2:

Found a much nicer looking Version (sadly not nice in css):

Find:
div.message-part div.pre
{
  margin: 0px;
  padding: 0px;
  white-space: pre;
  font-family: Tahoma;
}

Replace with:
div.message-part div.pre
{
  margin: 0px;
  padding: 0px;
  white-space: pre-wrap;       /* css-3 should we be so lucky... */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 ?? */
  white-space: -o-pre-wrap;    /* Opera 7 ?? */
  word-wrap: break-word;       /* Internet Explorer 5.5+ */
  _white-space: pre;   /* IE only hack to re-specify in addition to word-wrap  */
  font-family: Tahoma;
}

Just testet in FF 3, Opera 9.5 and Safari 3, should also work in other browsers.

thembimoyo

Sorry to ask such... Which version of Roundcube does this theme work with the best?

dj2

Ok I did a search but couldn't find it.  Anyhow, I have my config file set to Vertical by default but it keeps going to Horizontal whenever I login or move to settings then back to mail again.  Any ideas?  This was with 0.2 and now the latest SVN release.

dj2

I should also mention, once I change to Vertical and go to compose/reply to emails, going back to the inbox results in the Horizontal layout.

gumis

For some reason, after an updgrade I can't open any JPEG files. It doesn't open them, instead of the pictureI see things like that: '����JFIF``���ExifII*��#��(2� �i��pq�ut�nn�� " CanonCanon PowerShot A530���2008:08:08 14:57:46 ��H��P�0220'

Basically - file content. Any idea?

bpat1434

Sounds like the text-header is being sent instead of jpg.  So instead of the browser displaying an image, it's displaying the text-value of the image.
 
 

MrPenguin_2

Hi,
I've got the same issue as several other people. The theme is working perfectly from a visual standpoint...my issue is with the display of emails. I can't seem to get any to show up. I get the spinning circle, but no list whatsoever. Is there a fix for this?

Aravin

Hi !
I have same problem with spinning circle.
i using OpenBSD 4.3 + lastest roundcube
same problem for Safari and Firefox

raas

Guys I've found the problem ! Just rename the skin folder to the original name "mvision2_en" and at main configuration change the skin folder to skin/mvision2_en.  You cannot change the skin directory name, it SHOULD BE the mvision2_en to work fine.

mpallo

Quote from: raas;13393Guys I've found the problem ! Just rename the skin folder to the original name "mvision2_en" and at main configuration change the skin folder to skin/mvision2_en.  You cannot change the skin directory name, it SHOULD BE the mvision2_en to work fine.

This did not work for me.

Aravin


s5n

Quote from: woehrl01;13232@s5n:

...

Just testet in FF 3, Opera 9.5 and Safari 3, should also work in other browsers.

Thank you very much! :)

Cheers s5n

petruz

Quote from: raas;13393Guys I've found the problem ! Just rename the skin folder to the original name "mvision2_en" and at main configuration change the skin folder to skin/mvision2_en.  You cannot change the skin directory name, it SHOULD BE the mvision2_en to work fine.

Great!! Thanks alot :)
Awesome theme. Keep up the good work!!