Changeset aa98362 in github


Ignore:
Timestamp:
Mar 2, 2008 9:46:43 AM (5 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
512d8c2
Parents:
019b5d5
Message:

Minor bug fixes and visual enhancements

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_html.inc

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

    rce102f2 raa98362  
    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; 
  • skins/default/mail.css

    r7f9ea15 raa98362  
    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.