summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-16 05:27:38 +0100
committerAndrew Dolgov <[email protected]>2007-05-16 05:27:38 +0100
commitd420f2ee0cce949f718692723e7061c089d4aa5f (patch)
tree65dc0be9cdd54b3741506923a9e29fc9f58cf488
parenta5e46e0f76ef85677a6e07592ffcc8cb49822835 (diff)
tweak subtoolbar (change convert-to-label placement)
-rw-r--r--functions.php25
-rw-r--r--tt-rss.css9
2 files changed, 29 insertions, 5 deletions
diff --git a/functions.php b/functions.php
index 8640884a3..77161e8c2 100644
--- a/functions.php
+++ b/functions.php
@@ -2892,7 +2892,7 @@
}
- if (!strstr($_SESSION["client.userAgent"], "MSIE")) {
+ if (strpos($_SESSION["client.userAgent"], "MSIE") === false) {
print "<td class=\"headlineActions$rtl_cpart\">
<ul class=\"headlineDropdownMenu\">
@@ -2911,14 +2911,20 @@
<li onclick=\"$catchup_feed_link\">".__('Entire feed')."</li></ul></li>
<li class=\"vsep\">&nbsp;</li>";
- if ($limit != 0) {
+ if ($limit != 0 && !$search) {
print "
<li class=\"top\"><a href=\"$page_next_link\">".__('Next page')."</a><ul>
<li onclick=\"$page_prev_link\">".__('Previous page')."</li>
<li onclick=\"$page_first_link\">".__('First page')."</li></ul></li>
</ul>";
- }
+ }
+ if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
+ print "<li class=\"top3\">
+ <a href=\"javascript:labelFromSearch('$search', '$search_mode',
+ '$match_on', '$feed_id', '$is_cat');\">
+ ".__('Convert to Label')."</a></td>";
+ }
print "
</td>";
@@ -2937,16 +2943,25 @@
__('Mark as read:')."
<a href=\"#\" onclick=\"$catchup_page_link\">".__('Page')."</a>,
<a href=\"#\" onclick=\"$catchup_feed_link\">".__('Feed')."</a>";
+
+ if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
+
+ print "&nbsp;&nbsp;
+ <a href=\"javascript:labelFromSearch('$search', '$search_mode',
+ '$match_on', '$feed_id', '$is_cat');\">
+ ".__('Convert to Label')."</a>";
+ }
+
print "</td>";
}
- if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
+/* if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
print "<td class=\"headlineActions$rtl_cpart\">
<a href=\"javascript:labelFromSearch('$search', '$search_mode',
'$match_on', '$feed_id', '$is_cat');\">
".__('Convert to Label')."</a></td>";
- }
+} */
print "<td class=\"headlineTitle$rtl_cpart\">";
diff --git a/tt-rss.css b/tt-rss.css
index 122bfa9f8..8c1f7911e 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -1478,6 +1478,15 @@ ul.headlineDropdownMenu li.top2 {
float : left;
}
+ul.headlineDropdownMenu li.top3 {
+ float : left;
+ margin : 0px;
+ cursor : pointer;
+ border-width : 1px 1px 1px 1px;
+ border-color : transparent;
+ border-style : solid;
+}
+
ul.headlineDropdownMenu li.vsep {
float : left;
margin : 0px 5px 0px 0px;