limit the amount of tags shown in CDM
This commit is contained in:
parent
49aa6de964
commit
22d1f3db53
|
@ -4044,13 +4044,25 @@
|
||||||
$tags = get_article_tags($link, $id);
|
$tags = get_article_tags($link, $id);
|
||||||
|
|
||||||
$tags_str = "";
|
$tags_str = "";
|
||||||
|
$full_tags_str = "";
|
||||||
|
|
||||||
foreach ($tags as $tag) {
|
foreach ($tags as $tag) {
|
||||||
$num_tags++;
|
$num_tags++;
|
||||||
$tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
|
$full_tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
|
||||||
|
if ($num_tags < 5) {
|
||||||
|
$tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
|
||||||
|
} else if ($num_tags == 5) {
|
||||||
|
$tags_str .= "...";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$tags_str = preg_replace("/, $/", "", $tags_str);
|
$tags_str = preg_replace("/, $/", "", $tags_str);
|
||||||
|
$full_tags_str = preg_replace("/, $/", "", $full_tags_str);
|
||||||
|
|
||||||
|
$all_tags_div = "<span class='cdmAllTagsCtr'>...<div class='cdmAllTags'>All Tags: $full_tags_str</div></span>";
|
||||||
|
|
||||||
|
$tags_str = preg_replace("/\.\.\.$/", "$all_tags_div", $tags_str);
|
||||||
|
|
||||||
|
|
||||||
if ($tags_str == "") $tags_str = "no tags";
|
if ($tags_str == "") $tags_str = "no tags";
|
||||||
|
|
||||||
|
|
16
tt-rss.css
16
tt-rss.css
|
@ -849,6 +849,22 @@ td.hlFeed {
|
||||||
background-color : white;
|
background-color : white;
|
||||||
} */
|
} */
|
||||||
|
|
||||||
|
div.cdmAllTags {
|
||||||
|
width : 75%;
|
||||||
|
float : left;
|
||||||
|
background-color : white;
|
||||||
|
border : 1px solid #c0c0c0;
|
||||||
|
display : none;
|
||||||
|
z-index : 3;
|
||||||
|
top : auto;
|
||||||
|
left : auto;
|
||||||
|
position : absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.cdmAllTagsCtr:hover div {
|
||||||
|
display : block;
|
||||||
|
}
|
||||||
|
|
||||||
div.cdmArticle {
|
div.cdmArticle {
|
||||||
border-color : #a0a0a0;
|
border-color : #a0a0a0;
|
||||||
border-width : 0px 0px 1px 0px;
|
border-width : 0px 0px 1px 0px;
|
||||||
|
|
Loading…
Reference in New Issue