mirror of
https://github.com/friendica/friendica
synced 2024-11-13 00:22:59 +00:00
Added response active support to smoothly
- Added "self" class to wall_thread.tpl to avoid conflict with the already existing "active" class - Added style
This commit is contained in:
parent
92da411465
commit
e361536cd8
2 changed files with 16 additions and 12 deletions
|
@ -1586,6 +1586,10 @@ ul .sidebar-group-li .icon {
|
|||
margin-right: 10px;
|
||||
display: inline;
|
||||
}
|
||||
.wall-item-like-buttons a.self {
|
||||
background-color: rgba(52, 101, 164, .5);
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.wall-item-links-wrapper {
|
||||
width: 30px;
|
||||
|
|
|
@ -85,9 +85,9 @@
|
|||
|
||||
{{if $item.vote}}
|
||||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-{{$item.id}}">
|
||||
<a href="#" class="icon like" title="{{$item.vote.like.0}}" onclick="dolike({{$item.id}},'like'); return false"></a>
|
||||
<a href="#" class="icon like{{if $item.responses.like.self}} self{{/if}}" title="{{$item.vote.like.0}}" onclick="dolike({{$item.id}},'like'); return false"></a>
|
||||
{{if $item.vote.dislike}}
|
||||
<a href="#" class="icon dislike" title="{{$item.vote.dislike.0}}" onclick="dolike({{$item.id}},'dislike'); return false"></a>
|
||||
<a href="#" class="icon dislike{{if $item.responses.dislike.self}} self{{/if}}" title="{{$item.vote.dislike.0}}" onclick="dolike({{$item.id}},'dislike'); return false"></a>
|
||||
{{/if}}
|
||||
{{if $item.vote.share}}
|
||||
<a href="#" class="icon recycle wall-item-share-buttons" title="{{$item.vote.share.0}}" onclick="jotShare({{$item.id}}); return false"></a> {{/if}}
|
||||
|
|
Loading…
Reference in a new issue