fix connedit > collection > checkbox position
This commit is contained in:
parent
4bf758cc5b
commit
030175bde6
@ -81,10 +81,16 @@
|
|||||||
|
|
||||||
|
|
||||||
/* group */
|
/* group */
|
||||||
|
input.group-edit-checkbox {
|
||||||
|
margin: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.group-edit-link {
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.group-edit-icon {
|
.group-edit-icon {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
z-index: 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
li:hover .group-edit-icon {
|
li:hover .group-edit-icon {
|
||||||
|
@ -5,14 +5,16 @@
|
|||||||
{{foreach $groups as $group}}
|
{{foreach $groups as $group}}
|
||||||
<li>
|
<li>
|
||||||
{{if $group.cid}}
|
{{if $group.cid}}
|
||||||
<input type="checkbox"
|
<a class="pull-right group-edit-link">
|
||||||
class="{{if $group.selected}}ticked{{else}}unticked {{/if}} action"
|
<input type="checkbox"
|
||||||
onclick="contactgroupChangeMember('{{$group.id}}','{{$group.enc_cid}}');return true;"
|
class="{{if $group.selected}}ticked{{else}}unticked {{/if}} group-edit-checkbox"
|
||||||
{{if $group.ismember}}checked="checked"{{/if}}
|
onclick="contactgroupChangeMember('{{$group.id}}','{{$group.enc_cid}}');return true;"
|
||||||
/>
|
{{if $group.ismember}}checked="checked"{{/if}}
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $group.edit}}
|
{{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}}
|
{{/if}}
|
||||||
<a{{if $group.selected}} class="group-selected"{{/if}} href="{{$group.href}}">{{$group.text}}</a>
|
<a{{if $group.selected}} class="group-selected"{{/if}} href="{{$group.href}}">{{$group.text}}</a>
|
||||||
</li>
|
</li>
|
||||||
|
Reference in New Issue
Block a user