+ Reply to Thread
Page 8 of 18 FirstFirst ... 6 7 8 9 10 ... LastLast
Results 71 to 80 of 177

Thread: The New MobileMe "MobileCube"

  1. #71
    ABerglund is offline Registered User
    Join Date
    Sep 2007
    Location
    Eugene, Oregon, USA
    Posts
    335
    Downloads
    7
    Uploads
    0

    Default

    The Vacation/Auto-reply plugin doesn't load its tab, either. Find it here:

    RoundCube vacation plugin
    Arne Berglund
    SysAdmin, Internet Services
    Lane Education Service District
    Eugene, OR, USA

  2. #72
    phireware's Avatar
    phireware is offline Registered User
    Join Date
    Dec 2008
    Location
    USA
    Posts
    68
    Downloads
    0
    Uploads
    0

    Default

    Please try this... I call it 3.1.0 because of allowing plugin support for all plugins. It is still very much BETA as I just threw it together. But try it out and let me know please. Thanks.

    Download:
    Beta will/should be up on sourceforge shortly... It is in folder 3.1.0 Beta - Build #xx.xx.xx.x
    Last edited by phireware; 02-22-2010 at 08:57 PM.

  3. #73
    internalkernel's Avatar
    internalkernel is offline Registered User
    Join Date
    Jan 2010
    Posts
    25
    Downloads
    4
    Uploads
    0

    Default

    Quote Originally Posted by phireware View Post
    Please try this... I call it 3.1.0 because of allowing plugin support for all plugins. It is still very much BETA as I just threw it together. But try it out and let me know please. Thanks.
    Thanks for the quick turn around! The tabs show up, and here's some screen shots. I think it just has to do with the fact that the css styles for those plugins are formatted to have tabs on top - so they position all the way to the left - killing the tab field your css creates.

    The first screen shot is the pasword plugin, the text entry fields position way to the right - I can only see them when my browser is maximized, they don't show up in the screen shot at all. The second is the Spam Assassin User prefs plugin... the filters plugin is very similar.
    Attached Images

  4. #74
    phireware's Avatar
    phireware is offline Registered User
    Join Date
    Dec 2008
    Location
    USA
    Posts
    68
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by internalkernel View Post
    Thanks for the quick turn around! The tabs show up, and here's some screen shots. I think it just has to do with the fact that the css styles for those plugins are formatted to have tabs on top - so they position all the way to the left - killing the tab field your css creates.

    The first screen shot is the pasword plugin, the text entry fields position way to the right - I can only see them when my browser is maximized, they don't show up in the screen shot at all. The second is the Spam Assassin User prefs plugin... the filters plugin is very similar.
    I'll look into it some more when I'm home. At least the plugins show up now! That's a start!

    Posted via Mobile Device

  5. #75
    internalkernel's Avatar
    internalkernel is offline Registered User
    Join Date
    Jan 2010
    Posts
    25
    Downloads
    4
    Uploads
    0

    Default

    It's a great start... I'm sure it'll come along nicely...

    I adjusted your theme a bit more today and thought I'd post the info in case anyone else wants to do the same. In the default theme, on the attachment bar of the preview pane there is a clickable arrow which drops down and shows the message headers inline. This is extremely useful for me as I'm still very much in the process of tweaking Spam Assassin, so I located the code in the old theme and merged it into the mail.css.

    I realize you can access this info with a right click, and show source - but this quicker... and well, I'm lazy...

    Code:
    td.show-headers
    {
      height: 10px;
      background: url(images/icons/down_small.gif) no-repeat center;
    }
            
    td.hide-headers
    {       
      height: 10px;
      background: url(images/icons/up_small.gif) no-repeat center;
    }       
            
    #all-headers
    {
      height: 150px;
      display: none;
    }       
            
    #headers-source
    {       
      margin: 0 5px;
      padding: 0.5em;
      height: 145px;
      background: white;
      overflow: auto;
      font-size: 11px;
      white-space: nowrap;
      border: 1px solid #999999;
      display: none;
      text-align: left;
      color: #333;
    }
    Obviously, you have to also copy the gif images the url refers to into the images/icon folders in MobileCube as well. This was inserted at line 1023 in mail.css.

  6. #76
    fritz001 is offline Registered User
    Join Date
    Mar 2008
    Posts
    22
    Downloads
    4
    Uploads
    0

    Default

    A very nice theme, especially adding support for plugins

    but here are 2 little bugs:
    1. related to sieve plugin
    2. i guess is related to foldericons....

    P.S. tested on Firefox 3.6 ( linux )
    Attached Images

  7. #77
    internalkernel's Avatar
    internalkernel is offline Registered User
    Join Date
    Jan 2010
    Posts
    25
    Downloads
    4
    Uploads
    0

    Default

    Quote Originally Posted by fritz001 View Post
    A very nice theme, especially adding support for plugins

    but here are 2 little bugs:
    1. related to sieve plugin
    2. i guess is related to foldericons....

    P.S. tested on Firefox 3.6 ( linux )
    The first one happens because the watermark.html and watermark.gif are not being found. You can copy them out of the default theme and into MobileCube to stop that error.

    It should be:
    MobileCube/watermark.html
    MobileCube/images/watermark.gif

  8. #78
    bagu is offline Registered User
    Join Date
    Jan 2010
    Posts
    97
    Downloads
    15
    Uploads
    0

    Default

    There is an other small bug when not using english as default language, the bottom text is under icons...
    Attached Images
    Last edited by bagu; 02-22-2010 at 01:39 PM.

  9. #79
    phireware's Avatar
    phireware is offline Registered User
    Join Date
    Dec 2008
    Location
    USA
    Posts
    68
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by internalkernel View Post
    It's a great start... I'm sure it'll come along nicely...

    I adjusted your theme a bit more today and thought I'd post the info in case anyone else wants to do the same. In the default theme, on the attachment bar of the preview pane there is a clickable arrow which drops down and shows the message headers inline. This is extremely useful for me as I'm still very much in the process of tweaking Spam Assassin, so I located the code in the old theme and merged it into the mail.css.

    I realize you can access this info with a right click, and show source - but this quicker... and well, I'm lazy...

    Code:
    td.show-headers
    {
      height: 10px;
      background: url(images/icons/down_small.gif) no-repeat center;
    }
            
    td.hide-headers
    {       
      height: 10px;
      background: url(images/icons/up_small.gif) no-repeat center;
    }       
            
    #all-headers
    {
      height: 150px;
      display: none;
    }       
            
    #headers-source
    {       
      margin: 0 5px;
      padding: 0.5em;
      height: 145px;
      background: white;
      overflow: auto;
      font-size: 11px;
      white-space: nowrap;
      border: 1px solid #999999;
      display: none;
      text-align: left;
      color: #333;
    }
    Obviously, you have to also copy the gif images the url refers to into the images/icon folders in MobileCube as well. This was inserted at line 1023 in mail.css.
    Can you explain more on where I can find the place this code works? Screenshots? I just haven't found where this code comes into any use.

    Quote Originally Posted by internalkernel View Post
    The first one happens because the watermark.html and watermark.gif are not being found. You can copy them out of the default theme and into MobileCube to stop that error.

    It should be:
    MobileCube/watermark.html
    MobileCube/images/watermark.gif
    This will be fixed and will be in the next build of the BETA, I'll push it out sometime tonight.
    Last edited by phireware; 02-22-2010 at 09:23 PM.

  10. #80
    phireware's Avatar
    phireware is offline Registered User
    Join Date
    Dec 2008
    Location
    USA
    Posts
    68
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by bagu View Post
    There is an other small bug when not using english as default language, the bottom text is under icons...
    I'll try to find a fix...
    Last edited by phireware; 02-22-2010 at 09:25 PM.

+ Reply to Thread
Page 8 of 18 FirstFirst ... 6 7 8 9 10 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts