Author Topic: MobileMe  (Read 59859 times)

Offline bpat1434

  • Administrator
  • Hero Member
  • *****
  • Posts: 673
MobileMe
« Reply #15 on: September 15, 2008, 12:23:53 PM »
Quote from: craggles;12997
If only themes could be altered in the 'personal settings' link. I've got access to RoundCube through my hosting package but don't have access to the config files.


But with the release of 0.2 stable (or the next beta) you will have personal settings to change your theme ;)  If they do a SVN checkout, then you can use it now ;)
 
  

Offline mercator

  • Newbie
  • *
  • Posts: 9
MobileMe
« Reply #16 on: September 19, 2008, 06:35:42 PM »
Hello,

This is a great skin. I miss one thing though: It seems not possible to change the language for the spell checker. What am I missing - or is the option missing?

Tnx,
Mercator

Offline Alex3

  • Newbie
  • *
  • Posts: 8
MobileMe
« Reply #17 on: September 23, 2008, 06:14:06 PM »
Just a small request to please get this compatible with 0.2 beta :) The collapsible folder and address book importing are really good features I've been looking for, and Roundcube isn't the same for me without this skin, an update would be superb!

Offline cednoise

  • Newbie
  • *
  • Posts: 1
MobileMe
« Reply #18 on: December 31, 2008, 12:21:08 PM »
damn downloadlink is corrupt.
Looks verry nice, but still cant download it after 3 day's:
Server didn't responding error.

Offline molsted

  • Newbie
  • *
  • Posts: 1
MobileMe
« Reply #19 on: January 06, 2009, 05:27:39 PM »
To remove borders in FF, edit skin/MobileMe/common.css
Find:
img {
        behavior: url('skins/mobileme/pngbehavior.htc');
}

Replace:
img {
        border-width: 0px;  
        behavior: url('skins/MobileMe/pngbehavior.htc');
}


Hmmm, it seems the skin wont work with $rcmail_config['preview_pane'] = TRUE;
« Last Edit: January 07, 2009, 02:11:38 AM by molsted »

Offline edisoninfo

  • Newbie
  • *
  • Posts: 2
MobileMe
« Reply #20 on: January 21, 2009, 09:24:26 AM »
Wow! Fantastic! Like some previous posters tho my wish list:

1. Folders on the left need to support sub folders (collapsing). Your photo in your initial post shows it but I can not get to the sub folders.
2. Color of the Logout button in the upper right. Too dark, can not see it. I found it by accident!
3. Address book does not work in Google Chrome. It appears for a split second and then vanishes.
« Last Edit: January 21, 2009, 09:30:15 AM by edisoninfo »

Offline proxydev

  • Newbie
  • *
  • Posts: 1
no proview pane
« Reply #21 on: February 13, 2009, 01:10:37 PM »
I have it working, but if I enable the preview pane, I can't click on any message, much less view any of them.  All other links work, but the message pane isn't clickable.

I've checked this in Firefox and Safari (OSX).

Anyone run into this and know a fix by chance?

Thanks!

Duane

Offline kush

  • Newbie
  • *
  • Posts: 1
MobileMe
« Reply #22 on: March 01, 2009, 09:44:07 PM »
hey kreal, love the theme, simply amazing! however the files im suppose to edit i dont find the keys you say to search for, im using v1.1 and i edited the config file. the others i couldnt find, could you help me please thanks!

Offline gjr

  • Newbie
  • *
  • Posts: 1
MobileMe
« Reply #23 on: March 03, 2009, 03:48:45 PM »
I was just testing my first linux based server. Based on directadmin and roundcube off course (the squirrel sucks big time)...

Just browsing for some themes and i saw this MobileMe theme! This is totally rocking. My compliments, this looks great!

I will get into roundcube themes and how to implement them. This is certainly something i would like to have on our server.

I will report any bugs when found, keep up the great work!

Offline henn1nk

  • Newbie
  • *
  • Posts: 1
MobileMe
« Reply #24 on: March 06, 2009, 05:01:42 AM »
I can't find in /program/js/app.js:

this.button_sel = function(command, id)

etc :-(

ah.. i found it in app.js.src

but.. the adressbook is broken here... it's an empty page :/

i'm using 0.2 stable.
« Last Edit: March 06, 2009, 05:10:14 AM by henn1nk »

Offline horfic

  • Jr. Member
  • **
  • Posts: 49
MobileMe
« Reply #25 on: March 06, 2009, 06:18:43 AM »
Will this skin also work with roundcube 0.2 stable?

Offline jaredyeo

  • Jr. Member
  • **
  • Posts: 10
MobileMe
« Reply #26 on: April 01, 2009, 05:05:43 AM »
this theme breaks in 0.2.

the issue is with splitter.js

two ways to fix this

1.) delete spiltter.js
2.) copy splitter.js from the default theme provided in 0.2, then change the this.p1.style.width to 50.

ok its not really a fix, its a hack.

Offline Alex3

  • Newbie
  • *
  • Posts: 8
MobileMe
« Reply #27 on: April 01, 2009, 02:26:21 PM »
Could you clarify that Jared? I think you mean line 84

Code: [Select]
this.p1.style.width = Math.floor(this.pos - this.p1pos.x - this.layer.width / 2) + 'px';

I changed it to read

Code: [Select]
this.p1.style.width =50;

but it didn't seem to make a difference.

Offline jaredyeo

  • Jr. Member
  • **
  • Posts: 10
MobileMe
« Reply #28 on: April 03, 2009, 05:24:33 AM »
Quote from: Alex3;18184
Could you clarify that Jared? I think you mean line 84

Code: [Select]
this.p1.style.width = Math.floor(this.pos - this.p1pos.x - this.layer.width / 2) + 'px';

I changed it to read

Code: [Select]
this.p1.style.width =50;

but it didn't seem to make a difference.


Hmm I don't think its that line..

Heres my file. Hope it works for you.

Offline Alex3

  • Newbie
  • *
  • Posts: 8
MobileMe
« Reply #29 on: April 03, 2009, 11:50:35 AM »
It worked perfectly, thanks very much!