Author Topic: MVISION - Updated and Upgraded!! v2  (Read 88007 times)

Offline malikhemani

  • Newbie
  • *
  • Posts: 7
Thanks
« Reply #60 on: August 01, 2008, 01:02:49 PM »
Thank you. I search but looks like I overlooked that post.

Take Care,
Malik M. Hemani
Graphic Stylus | Print Stylus
Malik@GraphicStylus.net

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

Offline s5n

  • Newbie
  • *
  • Posts: 7
MVISION - Updated and Upgraded!! v2
« Reply #61 on: August 03, 2008, 01:37:03 PM »
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

Offline woehrl01

  • Newbie
  • *
  • Posts: 1
MVISION - Updated and Upgraded!! v2
« Reply #62 on: August 06, 2008, 04:15:39 AM »
@s5n:

Edit mvision2_en/mail.css:

Version 1:


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

to:

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

Version 2:

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

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

Replace with:
Code: [Select]
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.
« Last Edit: August 06, 2008, 05:36:44 AM by woehrl01 »

Offline thembimoyo

  • Newbie
  • *
  • Posts: 1
MVISION - Updated and Upgraded!! v2
« Reply #63 on: August 10, 2008, 07:17:40 AM »
Sorry to ask such... Which version of Roundcube does this theme work with the best?

Offline dj2

  • Jr. Member
  • **
  • Posts: 40
MVISION - Updated and Upgraded!! v2
« Reply #64 on: August 10, 2008, 10:38:27 AM »
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.

Offline dj2

  • Jr. Member
  • **
  • Posts: 40
MVISION - Updated and Upgraded!! v2
« Reply #65 on: August 10, 2008, 07:43:50 PM »
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.

Offline gumis

  • Newbie
  • *
  • Posts: 2
Problem with graphic attachments
« Reply #66 on: August 18, 2008, 05:28:41 AM »
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?

Offline bpat1434

  • Administrator
  • Hero Member
  • *****
  • Posts: 673
MVISION - Updated and Upgraded!! v2
« Reply #67 on: August 18, 2008, 10:22:30 AM »
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.
 
  

Offline MrPenguin_2

  • Newbie
  • *
  • Posts: 1
MVISION - Updated and Upgraded!! v2
« Reply #68 on: August 19, 2008, 05:41:50 AM »
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?

Offline Aravin

  • Newbie
  • *
  • Posts: 2
MVISION - Updated and Upgraded!! v2
« Reply #69 on: August 19, 2008, 07:45:24 AM »
Hi !
I have same problem with spinning circle.
i using OpenBSD 4.3 + lastest roundcube
same problem for Safari and Firefox

Offline raas

  • Newbie
  • *
  • Posts: 1
Spinning whell problem
« Reply #70 on: August 19, 2008, 08:29:40 PM »
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.

Offline mpallo

  • Jr. Member
  • **
  • Posts: 30
MVISION - Updated and Upgraded!! v2
« Reply #71 on: August 20, 2008, 10:47:46 PM »
Quote from: raas;13393
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.


This did not work for me.

Offline Aravin

  • Newbie
  • *
  • Posts: 2
MVISION - Updated and Upgraded!! v2
« Reply #72 on: August 22, 2008, 02:08:09 PM »
Thank You !
This work

Offline s5n

  • Newbie
  • *
  • Posts: 7
MVISION - Updated and Upgraded!! v2
« Reply #73 on: August 24, 2008, 10:37:05 AM »
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

Offline petruz

  • Newbie
  • *
  • Posts: 1
MVISION - Updated and Upgraded!! v2
« Reply #74 on: August 26, 2008, 08:32:05 PM »
Quote from: raas;13393
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.


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