Merge pull request #597 from nextcloud/acc_workshop
Fix some small accessibility issues
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
<div id="stack-add" ng-if="boardservice.canEdit() && checkCanEdit()">
|
||||
<form class="ng-pristine ng-valid" ng-submit="createStack()">
|
||||
<label for="new-stack-input" class="hidden-visually"><?php p($l->t('Add a new stack')); ?></label>
|
||||
<input type="text" class="no-close" placeholder="<?php p($l->t('Add a new stack')); ?>"
|
||||
ng-focus="status.addStack=true"
|
||||
ng-blur="status.addStack=false"
|
||||
ng-model="newStack.title" required
|
||||
id="new-stack-input"
|
||||
maxlength="100" />
|
||||
<button class="button-inline icon icon-add" ng-style="{'opacity':'{{status.addStack ? 1: 0.5}}'}" type="submit" title="<?php p($l->t('Submit')); ?>">
|
||||
<span class="hidden-visually"><?php p($l->t('Submit')); ?></span>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<div class="crumb title">
|
||||
<a class="bullet"><span class="board-bullet" ng-style="{'background-color':'#' + boardservice.getCurrent().color}"></span></a>
|
||||
<a ui-sref=".({filter: ''})">{{ boardservice.getCurrent().title }}</a>
|
||||
<a ui-sref=".detail({ tab: 0 })"><span class="icon icon-share"></span></a>
|
||||
<a ui-sref=".detail({ tab: 0 })" title="<?php p($l->t('Share board')); ?>"><span class="icon icon-share"></span></a>
|
||||
</div>
|
||||
<div class="crumb title" ng-if="params.filter=='archive'">
|
||||
<a><span class="icon icon-archive"></span></a>
|
||||
@@ -110,7 +110,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="app-popover-menu-utils" ng-if="!boardservice.isArchived()">
|
||||
<button class="button-inline card-options icon-more" ng-model="card"></button>
|
||||
<button class="button-inline card-options icon-more" ng-model="card" aria-label="<?php p($l->t('Actions')) ?>"></button>
|
||||
<div class="popovermenu hidden">
|
||||
<ul>
|
||||
<li ng-if="!isCurrentUserAssigned(c)">
|
||||
|
||||
Reference in New Issue
Block a user