Changeset 1167 in subversion


Ignore:
Timestamp:
Mar 2, 2008 9:46:43 AM (5 years ago)
Author:
thomasb
Message:

Minor bug fixes and visual enhancements

Location:
trunk/roundcubemail
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/rcube_html.inc

    r1156 r1167  
    637637     
    638638    if (!is_array($select)) 
    639       $select = array((string)$select); 
     639      $select = array($select); 
    640640 
    641641    foreach ($this->options as $option) 
  • trunk/roundcubemail/program/js/app.js

    r1161 r1167  
    13881388    { 
    13891389    // exit if current or no mailbox specified or if selection is empty 
    1390     if (!mbox || !this.env.uid || mbox==this.env.mailbox) 
    1391       { 
    1392       if (!this.message_list || !this.message_list.get_selection().length) 
    1393         return; 
    1394       } 
     1390    if (!mbox || !this.env.uid || mbox == this.env.mailbox || !this.message_list || !this.message_list.get_selection().length) 
     1391      return; 
    13951392 
    13961393    var lock = false; 
  • trunk/roundcubemail/skins/default/mail.css

    r1044 r1167  
    324324{ 
    325325  background-color: #929292; 
     326} 
     327 
     328#mailboxlist li.selected a, 
     329#mailboxlist li.droptarget li.selected a 
     330{ 
    326331  color: #FFF; 
    327332  font-weight: bold; 
Note: See TracChangeset for help on using the changeset viewer.