]> git.mxchange.org Git - friendica.git/commitdiff
tooltip for selecting items
authorFriendika <info@friendika.com>
Sat, 18 Jun 2011 06:06:42 +0000 (23:06 -0700)
committerFriendika <info@friendika.com>
Sat, 18 Jun 2011 06:06:42 +0000 (23:06 -0700)
include/conversation.php
view/theme/duepuntozero/style.css
view/wall_item_drop.tpl

index 0d3123831e14e53accabdf8e69ecde22a5729330..b536fed5fdb00009a18e98f3c27bbcdb3b29f3c9 100644 (file)
@@ -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'];
index 8bebecbd7b3ea2fbe444e11d0acfa3a056e5d817..a8d40886f3f995c26d282397b053f8ec9bcaadd4 100644 (file)
@@ -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 {
index 30a30a0c6d45ca0654499270e7fc3e6645aa8a95..30fa6c3356d0bce891847abc3cc7309bd3b75770 100644 (file)
@@ -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>