Some small optical and structural changes to the manage template

This commit is contained in:
Michael Vogel 2015-10-26 08:16:37 +01:00
parent a8ef43e80e
commit ac744b61f9
2 changed files with 5 additions and 4 deletions

View File

@ -252,6 +252,7 @@ a {
background: none; background: none;
height: 80px; height: 80px;
width: 80px; width: 80px;
cursor: pointer;
} }
.selected-identity img { .selected-identity img {

View File

@ -3,13 +3,13 @@
<div id="identity-manage-desc">{{$desc}}</div> <div id="identity-manage-desc">{{$desc}}</div>
<div id="identity-manage-choose">{{$choose}}</div> <div id="identity-manage-choose">{{$choose}}</div>
<div id="identity-selector-wrapper"> <div id="identity-selector-wrapper" role="menu">
<form action="manage" method="post" > <form action="manage" method="post" >
{{foreach $identities as $id}} {{foreach $identities as $id}}
<div class="itentity-match-wrapper {{if $id.selected}}selected-identity{{/if}}" id="identity-match-{{$id.uid}}"> <div class="itentity-match-wrapper {{if $id.selected}}selected-identity{{/if}}" id="identity-match-{{$id.uid}}">
<div class="identity-match-photo" id="identity-match-photo-{{$id.uid}}"> <div class="identity-match-photo" id="identity-match-photo-{{$id.uid}}">
<button name="identity" value="{{$id.uid}}" onclick="this.form.submit();" title="{{$id.username}}"> <button role="menuitem" name="identity" value="{{$id.uid}}" onclick="this.form.submit();" title="{{$id.username}}">
<img src="{{$id.thumb}}" alt="{{$id.username}}" /> <img src="{{$id.thumb}}" alt="{{$id.username}}" />
</button> </button>
</div> </div>
@ -25,7 +25,7 @@
</div> </div>
{{/foreach}} {{/foreach}}
<div class="identity-match-break"></div>
</form> </form>
</div> </div>