Changeset de2e0bfe in github


Ignore:
Timestamp:
Dec 9, 2008 12:44:45 PM (4 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
6291c90
Parents:
fe3e678
Message:

#1485439: style fixes for IE6,7

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • program/js/app.js

    rb754889 rde2e0bfe  
    35613561      } 
    35623562      else if (c=='attachment') 
    3563         col.innerHTML = attachment && this.env.attachmenticon ? '<img src="'+this.env.attachmenticon+'" alt="" />' : ''; 
     3563        col.innerHTML = attachment && this.env.attachmenticon ? '<img src="'+this.env.attachmenticon+'" alt="" />' : '&nbsp;'; 
    35643564      else 
    35653565        col.innerHTML = cols[c]; 
  • program/steps/mail/func.inc

    r133bb07 rde2e0bfe  
    324324        $out .= '<td class="'.$col.'">' . $cont . "</td>\n"; 
    325325      else 
    326         $out .= sprintf("<td class=\"icon\">%s</td>\n", $attach_icon ? sprintf($image_tag, $skin_path, $attach_icon, '') : ''); 
     326        $out .= sprintf("<td class=\"icon\">%s</td>\n", $attach_icon ? sprintf($image_tag, $skin_path, $attach_icon, '') : '&nbsp;'); 
    327327      } 
    328328 
  • program/steps/settings/manage_folders.inc

    r701b9a7 rde2e0bfe  
    250250    } 
    251251    else { 
    252       $table->add(null, ''); 
    253       $table->add(null, ''); 
     252      $table->add('rename', '&nbsp;'); 
     253      $table->add('delete', '&nbsp;'); 
    254254    } 
    255255     
  • skins/default/mail.css

    rfe3e678 rde2e0bfe  
    300300{ 
    301301  position:relative; 
    302   width: 100%; 
    303302  height: auto; 
    304303  margin: 0px; 
     
    465464  table-layout: fixed; 
    466465  /* css hack for IE */ 
    467   width: expression(parseInt(document.getElementById('mailcontframe').clientWidth)+'px'); 
     466  width: expression('auto'); 
    468467} 
    469468 
  • skins/default/settings.css

    r7f43e18 rde2e0bfe  
    217217{ 
    218218  width: 100%; 
     219  /* css hack for IE */  
     220  width: expression('auto'); 
    219221} 
    220222 
Note: See TracChangeset for help on using the changeset viewer.