summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-12-09 17:44:45 +0000
committeralecpl <alec@alec.pl>2008-12-09 17:44:45 +0000
commitde2e0bfeb8bf6884ae4185b94d495a55322348ae (patch)
tree3f48ae385365d37fef664070b2a4fa560d64fe11 /program
parentfe3e67884d2947a635f0e3150860aaedb10bae9e (diff)
#1485439: style fixes for IE6,7
Diffstat (limited to 'program')
-rw-r--r--program/js/app.js2
-rw-r--r--program/steps/mail/func.inc2
-rw-r--r--program/steps/settings/manage_folders.inc4
3 files changed, 4 insertions, 4 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 2795ccc59..c46997afa 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -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];
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index 93dae6660..696390e9f 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -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";
diff --git a/program/steps/settings/manage_folders.inc b/program/steps/settings/manage_folders.inc
index d44550e72..952d7914c 100644
--- a/program/steps/settings/manage_folders.inc
+++ b/program/steps/settings/manage_folders.inc
@@ -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);