aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/testbubble
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-02-15 18:13:41 -0800
committerfriendica <info@friendica.com>2012-02-15 18:13:41 -0800
commitb1d31aca519bf7ca99420ad99ccd9575cc24455f (patch)
tree4abf57aa87fe86fe876e688ccd10d922fa725952 /view/theme/testbubble
parentd05442610158eb21cd3e9b9b3cd8cd3e5d56c13c (diff)
downloadvolse-hubzilla-b1d31aca519bf7ca99420ad99ccd9575cc24455f.tar.gz
volse-hubzilla-b1d31aca519bf7ca99420ad99ccd9575cc24455f.tar.bz2
volse-hubzilla-b1d31aca519bf7ca99420ad99ccd9575cc24455f.zip
quick comments
Diffstat (limited to 'view/theme/testbubble')
-rwxr-xr-xview/theme/testbubble/comment_item.tpl7
-rwxr-xr-xview/theme/testbubble/style.css9
2 files changed, 16 insertions, 0 deletions
diff --git a/view/theme/testbubble/comment_item.tpl b/view/theme/testbubble/comment_item.tpl
index cad572f4e..bc75eb1a6 100755
--- a/view/theme/testbubble/comment_item.tpl
+++ b/view/theme/testbubble/comment_item.tpl
@@ -11,6 +11,13 @@
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
</div>
<div class="comment-edit-photo-end"></div>
+ {{ if $qcomment }}
+ {{ for $qcomment as $qc }}
+ <span class="fakelink qcomment" onclick="commentInsert(this,$id); return false;" >$qc</span>
+ &nbsp;
+ {{ endfor }}
+ {{ endif }}
+
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);" onBlur="commentClose(this,$id);" >$comment</textarea>
<div class="comment-edit-text-end"></div>
diff --git a/view/theme/testbubble/style.css b/view/theme/testbubble/style.css
index 118fc2e7c..fcb7bea7a 100755
--- a/view/theme/testbubble/style.css
+++ b/view/theme/testbubble/style.css
@@ -3259,3 +3259,12 @@ ul.menu-popup {
background-color:#b20202;
order-bottom: none;
}
+
+.qcomment {
+ opacity: 0;
+ filter:alpha(opacity=0);
+}
+.qcomment:hover {
+ opacity: 1.0;
+ filter:alpha(opacity=100);
+}