#1485439: style fixes for IE6,7

release-0.6
alecpl 16 years ago
parent fe3e67884d
commit de2e0bfeb8

@ -3560,7 +3560,7 @@ function rcube_webmail()
col.innerHTML = '<img src="'+this.env.unflaggedicon+'" alt="" />';
}
else if (c=='attachment')
col.innerHTML = attachment && this.env.attachmenticon ? '<img src="'+this.env.attachmenticon+'" alt="" />' : '';
col.innerHTML = attachment && this.env.attachmenticon ? '<img src="'+this.env.attachmenticon+'" alt="" />' : '&nbsp;';
else
col.innerHTML = cols[c];

@ -323,7 +323,7 @@ function rcmail_message_list($attrib)
if ($col!='attachment')
$out .= '<td class="'.$col.'">' . $cont . "</td>\n";
else
$out .= sprintf("<td class=\"icon\">%s</td>\n", $attach_icon ? sprintf($image_tag, $skin_path, $attach_icon, '') : '');
$out .= sprintf("<td class=\"icon\">%s</td>\n", $attach_icon ? sprintf($image_tag, $skin_path, $attach_icon, '') : '&nbsp;');
}
$out .= "</tr>\n";

@ -249,8 +249,8 @@ function rcube_subscription_form($attrib)
$table->add('delete', html::a(array('href' => "#delete", 'title' => rcube_label('deletefolder')), $del_button));
}
else {
$table->add(null, '');
$table->add(null, '');
$table->add('rename', '&nbsp;');
$table->add('delete', '&nbsp;');
}
$a_js_folders['rcmrow'.$idx] = array($folder_utf8, $display_folder, $protected);

@ -299,7 +299,6 @@ td.formlinks a:visited
#mailboxlist
{
position:relative;
width: 100%;
height: auto;
margin: 0px;
padding: 0px;
@ -464,7 +463,7 @@ body.messagelist
display: table;
table-layout: fixed;
/* css hack for IE */
width: expression(parseInt(document.getElementById('mailcontframe').clientWidth)+'px');
width: expression('auto');
}
#messagelist thead tr td

@ -216,6 +216,8 @@ div.settingspart
#subscription-table
{
width: 100%;
/* css hack for IE */
width: expression('auto');
}
#subscription-table tbody td

Loading…
Cancel
Save