aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-17 23:06:42 -0700
committerFriendika <info@friendika.com>2011-06-17 23:06:42 -0700
commit9e2db5d5a614b5dedcd63cdc966c1382a1dfcd7a (patch)
tree6c8c81e54f7950c23bce552de355cdb675fd6308
parent787f079d13070dd691af8fcdde76de2649dcbb0f (diff)
downloadvolse-hubzilla-9e2db5d5a614b5dedcd63cdc966c1382a1dfcd7a.tar.gz
volse-hubzilla-9e2db5d5a614b5dedcd63cdc966c1382a1dfcd7a.tar.bz2
volse-hubzilla-9e2db5d5a614b5dedcd63cdc966c1382a1dfcd7a.zip
tooltip for selecting items
-rw-r--r--include/conversation.php2
-rw-r--r--view/theme/duepuntozero/style.css4
-rw-r--r--view/wall_item_drop.tpl2
3 files changed, 4 insertions, 4 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 0d3123831..b536fed5f 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -392,7 +392,7 @@ function conversation(&$a, $items, $mode, $update) {
if((intval($item['contact-id']) && $item['contact-id'] == remote_user()) || ($item['uid'] == local_user()))
$dropping = true;
- $drop = replace_macros((($dropping)? $droptpl : $fakedrop), array('$id' => $item['id'], '$delete' => t('Delete')));
+ $drop = replace_macros((($dropping)? $droptpl : $fakedrop), array('$id' => $item['id'], '$select' => t('Select'), '$delete' => t('Delete')));
$photo = $item['photo'];
diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css
index 8bebecbd7..a8d40886f 100644
--- a/view/theme/duepuntozero/style.css
+++ b/view/theme/duepuntozero/style.css
@@ -2522,8 +2522,8 @@ a.mail-list-link {
position: absolute;
left: 0px;
top: 0px;
- opacity: 0.3;
- filter:alpha(opacity=30);
+ opacity: 0.2;
+ filter:alpha(opacity=20);
}
#lang-select-icon:hover {
diff --git a/view/wall_item_drop.tpl b/view/wall_item_drop.tpl
index 30a30a0c6..30fa6c335 100644
--- a/view/wall_item_drop.tpl
+++ b/view/wall_item_drop.tpl
@@ -2,5 +2,5 @@
<a href="item/drop/$id" onclick="return confirmDelete();" class="icon drophide" title="$delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>
</div>
-<input type="checkbox" onclick="checkboxhighlight(this);" class="item-select" name="itemselected[]" value="$id" />
+<input type="checkbox" onclick="checkboxhighlight(this);" title="$select" class="item-select" name="itemselected[]" value="$id" />
<div class="wall-item-delete-end"></div>