mirror of
https://github.com/bitwarden/browser
synced 2026-01-04 01:23:57 +00:00
more a11y fixes
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
{{'attachments' | i18n}}
|
||||
<small *ngIf="cipher">{{cipher.name}}</small>
|
||||
</h2>
|
||||
<button type="button" class="close" data-dismiss="modal" attr.aria-label="{{'close' | i18n}}">
|
||||
<button type="button" class="close" data-dismiss="modal" appA11yTitle="{{'close' | i18n}}">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
@@ -15,8 +15,9 @@
|
||||
<tbody>
|
||||
<tr *ngFor="let a of cipher.attachments">
|
||||
<td class="table-list-icon">
|
||||
<i class="fa fa-fw fa-lg fa-file-o" *ngIf="!a.downloading"></i>
|
||||
<i class="fa fa-spinner fa-lg fa-fw fa-spin" *ngIf="a.downloading"></i>
|
||||
<i class="fa fa-fw fa-lg fa-file-o" *ngIf="!a.downloading" aria-hidden="true"></i>
|
||||
<i class="fa fa-spinner fa-lg fa-fw fa-spin" *ngIf="a.downloading"
|
||||
aria-hidden="true"></i>
|
||||
</td>
|
||||
<td>
|
||||
<div class="d-flex">
|
||||
|
||||
Reference in New Issue
Block a user