summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--functions.php8
-rw-r--r--images/tag.pngbin673 -> 466 bytes
-rw-r--r--prefs.php1
-rw-r--r--tt-rss.css16
4 files changed, 18 insertions, 7 deletions
diff --git a/functions.php b/functions.php
index bb8b7ea2f..37ea3d5bf 100644
--- a/functions.php
+++ b/functions.php
@@ -3771,7 +3771,9 @@
if (!$tags_str) $tags_str = '<span class="tagList">'.__('no tags').'</span>';
- print "<div style='float : right'>$tags_str
+ print "<div style='float : right'>
+ <img src='images/tag.png' class='tagsPic' alt='Tags' title='Tags'>
+ $tags_str
<a title=\"Edit tags for this article\"
href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a></div>
<div clear='both'>$entry_comments</div>";
@@ -4115,7 +4117,9 @@
// print "<img src='images/tag.png' class='markedPic'>";
- print "<span class='s1'>Tags: $tags_str <a title=\"Edit tags for this article\"
+ print "<span class='s1'>
+ <img class='tagsPic' src='images/tag.png' alt='Tags'
+ title='Tags'> $tags_str <a title=\"Edit tags for this article\"
href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
print "</span>";
diff --git a/images/tag.png b/images/tag.png
index 9bf54ccc7..5415949ee 100644
--- a/images/tag.png
+++ b/images/tag.png
Binary files differ
diff --git a/prefs.php b/prefs.php
index 8bf283f1f..5a31d94c5 100644
--- a/prefs.php
+++ b/prefs.php
@@ -39,6 +39,7 @@
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
<script type="text/javascript" src="prototype.js"></script>
+ <script type="text/javascript" src="scriptaculous/scriptaculous.js"></script>
<script type="text/javascript" src="localized_js.php?<?php echo $dt_add ?>"></script>
<script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
diff --git a/tt-rss.css b/tt-rss.css
index a0ef19ce9..c7b3048ec 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -56,6 +56,13 @@ div.postReply div.postIcon {
margin : 10px 0px 10px 10px;
}
+div.postReply img.tagsPic {
+ width : 16px;
+ height : 16px;
+ vertical-align : middle;
+}
+
+
ul.feedList {
list-style-type : none;
margin : 5px;
@@ -936,27 +943,26 @@ div.cdmFooter span.s0 {
border-width : 0px 1px 0px 0px;
border-color : #c0c0c0;
border-style : dotted;
- padding : 0px 10px 0px 0px;
+ padding : 0px 5px 0px 0px;
}
div.cdmFooter span.s1 {
border-width : 0px 1px 0px 0px;
border-color : #c0c0c0;
border-style : dotted;
- padding : 0px 10px 0px 10px;
+ padding : 0px 5px 0px 5px;
}
div.cdmFooter span.s2 {
- padding : 0px 10px 0px 10px;
+ padding : 0px 5px 0px 5px;
}
-div.cdmFooter img.markedPic {
+div.cdmFooter img.markedPic, div.cdmFooter img.tagsPic {
width : 16px;
height : 16px;
vertical-align : middle;
}
-
div.cdmHeader div.articleUpdated {
float : right;
}