summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-07 08:38:18 +0100
committerAndrew Dolgov <[email protected]>2005-09-07 08:38:18 +0100
commitc80e2175878be8e3e5759acf752f26f8126bf7f3 (patch)
tree28bda385c5529af95902aad68bec8e5fb7c5ad08
parent310da49d2fe15daf318a10bb7e66abe00c78558a (diff)
fix headlines list sizing issues
-rw-r--r--backend.php10
-rw-r--r--viewfeed.js2
2 files changed, 6 insertions, 6 deletions
diff --git a/backend.php b/backend.php
index a9a661427..50d316b66 100644
--- a/backend.php
+++ b/backend.php
@@ -387,7 +387,7 @@
$update_pic = "<img src=\"images/updated.png\" alt=\"Updated\">";
++$num_unread;
} else {
- $update_pic = "&nbsp;";
+ $update_pic = "<img src=\"images/blank_icon.png\" alt=\"Updated\">";
}
if ($line["unread"] == "t") {
@@ -412,15 +412,15 @@
print "<tr class='$class' id='RROW-$id'";
// onclick=\"javascript:view($id,$feed_id)\">
- print "<td id='FUPDPIC-$id' valign='center'
+ print "<td id='FUPDPIC-$id' valign='center' align='center'
class='headlineUpdateMark'>$update_pic</td>";
- print "<td valign='center'
+ print "<td valign='center' align='center'
class='headlineUpdateMark'>$marked_pic</td>";
- print "<td class='headlineUpdated'>
+ print "<td class='headlineUpdated' width='25%'>
<a href=\"javascript:view($id,$feed_id);\">".$line["updated"]."</a></td>";
- print "<td class='headlineTitle'>$content_link</td>";
+ print "<td width='70%' class='headlineTitle'>$content_link</td>";
print "</tr>";
diff --git a/viewfeed.js b/viewfeed.js
index 957357a62..85963dfeb 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -59,7 +59,7 @@ function view(id, feed_id) {
var upd_img_pic = document.getElementById("FUPDPIC-" + id);
if (upd_img_pic) {
- upd_img_pic.innerHTML = "";
+ upd_img_pic.src = "images/blank_icon.png";
}
var unread_rows = getVisibleUnreadHeadlines();