aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/group_side.tpl
diff options
context:
space:
mode:
authorhabeascodice <habeascodice@federated.social>2014-10-13 03:22:01 -0700
committerhabeascodice <habeascodice@federated.social>2014-10-13 03:22:01 -0700
commit0c5408e22b47880e8e657d4e10f8b39581f2a29a (patch)
tree9360fbbeca2599b0f4f94b1b48f38f3bedbcc3d3 /view/tpl/group_side.tpl
parentbde8c6d39e1ccf7a53569cc652a62b5447d3243f (diff)
parenta512d1a4aab35ac874ccbff89d84fdd6d5b3343f (diff)
downloadvolse-hubzilla-0c5408e22b47880e8e657d4e10f8b39581f2a29a.tar.gz
volse-hubzilla-0c5408e22b47880e8e657d4e10f8b39581f2a29a.tar.bz2
volse-hubzilla-0c5408e22b47880e8e657d4e10f8b39581f2a29a.zip
Merge remote branch 'upstream/master'
Diffstat (limited to 'view/tpl/group_side.tpl')
-rwxr-xr-xview/tpl/group_side.tpl14
1 files changed, 8 insertions, 6 deletions
diff --git a/view/tpl/group_side.tpl b/view/tpl/group_side.tpl
index 3701f979e..6c5edba27 100755
--- a/view/tpl/group_side.tpl
+++ b/view/tpl/group_side.tpl
@@ -5,14 +5,16 @@
{{foreach $groups as $group}}
<li>
{{if $group.cid}}
- <input type="checkbox"
- class="{{if $group.selected}}ticked{{else}}unticked {{/if}} action"
- onclick="contactgroupChangeMember('{{$group.id}}','{{$group.enc_cid}}');return true;"
- {{if $group.ismember}}checked="checked"{{/if}}
- />
+ <a class="pull-right group-edit-link">
+ <input type="checkbox"
+ class="{{if $group.selected}}ticked{{else}}unticked {{/if}} group-edit-checkbox"
+ onclick="contactgroupChangeMember('{{$group.id}}','{{$group.enc_cid}}');return true;"
+ {{if $group.ismember}}checked="checked"{{/if}}
+ />
+ </a>
{{/if}}
{{if $group.edit}}
- <a class="pull-right group-edit-icon" href="{{$group.edit.href}}" title="{{$edittext}}"><i class="icon-pencil"></i></a>
+ <a class="pull-right group-edit-link" href="{{$group.edit.href}}" title="{{$edittext}}"><i class="group-edit-icon icon-pencil"></i></a>
{{/if}}
<a{{if $group.selected}} class="group-selected"{{/if}} href="{{$group.href}}">{{$group.text}}</a>
</li>