tweak display of multi-feed headlines
This commit is contained in:
parent
19815594c8
commit
df456bb0cf
|
@ -4331,26 +4331,40 @@
|
||||||
print "<td class='hlMarkedPic'>$marked_pic</td>";
|
print "<td class='hlMarkedPic'>$marked_pic</td>";
|
||||||
print "<td class='hlMarkedPic'>$published_pic</td>";
|
print "<td class='hlMarkedPic'>$published_pic</td>";
|
||||||
|
|
||||||
if ($line["feed_title"]) {
|
# if ($line["feed_title"]) {
|
||||||
print "<td class='hlContent'>$content_link</td>";
|
# print "<td class='hlContent'>$content_link</td>";
|
||||||
print "<td class='hlFeed'>
|
# print "<td class='hlFeed'>
|
||||||
<a href=\"javascript:viewfeed($feed_id, '', false)\">".
|
# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
|
||||||
truncate_string($line["feed_title"],30)."</a> </td>";
|
# truncate_string($line["feed_title"],30)."</a> </td>";
|
||||||
} else {
|
# } else {
|
||||||
print "<td class='hlContent' valign='middle'>";
|
|
||||||
|
|
||||||
print "<a href=\"javascript:view($id,$feed_id);\">" .
|
print "<td class='hlContent' valign='middle'>";
|
||||||
$line["title"];
|
|
||||||
|
|
||||||
if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
|
print "<a href=\"javascript:view($id,$feed_id);\">" .
|
||||||
if ($content_preview) {
|
$line["title"];
|
||||||
print "<span class=\"contentPreview\"> - $content_preview</span>";
|
|
||||||
}
|
if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
|
||||||
|
if ($content_preview) {
|
||||||
|
print "<span class=\"contentPreview\"> - $content_preview</span>";
|
||||||
}
|
}
|
||||||
|
|
||||||
print "</a>";
|
|
||||||
print "</td>";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
print "</a>";
|
||||||
|
|
||||||
|
# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
|
||||||
|
# $line["feed_title"]."</a>
|
||||||
|
|
||||||
|
if ($line["feed_title"]) {
|
||||||
|
print "<span class=\"hlFeed\">
|
||||||
|
(<a href=\"javascript:viewfeed($feed_id, '', false)\">".
|
||||||
|
$line["feed_title"]."</a>)
|
||||||
|
</span>";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
print "</td>";
|
||||||
|
|
||||||
|
# }
|
||||||
|
|
||||||
print "<td class=\"hlUpdated\"><nobr>$updated_fmt </nobr></td>";
|
print "<td class=\"hlUpdated\"><nobr>$updated_fmt </nobr></td>";
|
||||||
|
|
||||||
|
|
|
@ -847,6 +847,15 @@ td.hlFeed {
|
||||||
text-align : right;
|
text-align : right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span.hlFeed, span.hlFeed a {
|
||||||
|
font-size : 9pt;
|
||||||
|
color : gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.hlFeed a:hover {
|
||||||
|
color : #4684ff;
|
||||||
|
}
|
||||||
|
|
||||||
/* div.cdmArticle:hover {
|
/* div.cdmArticle:hover {
|
||||||
background-color : white;
|
background-color : white;
|
||||||
} */
|
} */
|
||||||
|
|
Loading…
Reference in New Issue