thomascube
2008-03-02 aa9836224019ec670984685acf77cf39d85357be
Minor bug fixes and visual enhancements

3 files modified
14 ■■■■■ changed files
program/include/rcube_html.inc 2 ●●● patch | view | raw | blame | history
program/js/app.js 7 ●●●● patch | view | raw | blame | history
skins/default/mail.css 5 ●●●●● patch | view | raw | blame | history
program/include/rcube_html.inc
@@ -636,7 +636,7 @@
    $value_str = $this->_conv_case(' value="%s"', 'attrib');
    
    if (!is_array($select))
      $select = array((string)$select);
      $select = array($select);
    foreach ($this->options as $option)
    {
program/js/app.js
@@ -1387,11 +1387,8 @@
  this.move_messages = function(mbox)
    {
    // exit if current or no mailbox specified or if selection is empty
    if (!mbox || !this.env.uid || mbox==this.env.mailbox)
      {
      if (!this.message_list || !this.message_list.get_selection().length)
        return;
      }
    if (!mbox || !this.env.uid || mbox == this.env.mailbox || !this.message_list || !this.message_list.get_selection().length)
      return;
    var lock = false;
    var add_url = '&_target_mbox='+urlencode(mbox)+'&_from='+(this.env.action ? this.env.action : '');
skins/default/mail.css
@@ -323,6 +323,11 @@
#mailboxlist li.droptarget li.selected
{
  background-color: #929292;
}
#mailboxlist li.selected a,
#mailboxlist li.droptarget li.selected a
{
  color: #FFF;
  font-weight: bold;
}