headline list display touch-ups
This commit is contained in:
parent
2e85e07be8
commit
0f172fff41
11
backend.php
11
backend.php
|
@ -1065,13 +1065,20 @@
|
||||||
print "<td class='hlFeed'>
|
print "<td class='hlFeed'>
|
||||||
<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a></td>";
|
<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a></td>";
|
||||||
} else {
|
} else {
|
||||||
print "<td class='hlContent'>$content_link";
|
print "<td class='hlContent'>";
|
||||||
|
|
||||||
|
print "<a id=\"FTITLE-$id\" href=\"javascript:view($id,$feed_id);\">" .
|
||||||
|
$line["title"];
|
||||||
|
|
||||||
if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
|
if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
|
||||||
|
|
||||||
$content_preview = truncate_string(strip_tags($line["content_preview"]),
|
$content_preview = truncate_string(strip_tags($line["content_preview"]),
|
||||||
101);
|
101);
|
||||||
|
|
||||||
print "<span class=\"contentPreview\"> - $content_preview</span>";
|
print "<span class=\"contentPreview\"> - $content_preview</span>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
print "</a>";
|
||||||
print "</td>";
|
print "</td>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -706,6 +706,10 @@ span.contentPreview {
|
||||||
font-weight : normal;
|
font-weight : normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span.contentPreview:hover {
|
||||||
|
color : #5050aa;
|
||||||
|
}
|
||||||
|
|
||||||
td.hlMarkedPic {
|
td.hlMarkedPic {
|
||||||
width : 25px;
|
width : 25px;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
|
|
Loading…
Reference in New Issue