mirror of
https://github.com/documize/community.git
synced 2025-08-04 21:15:24 +02:00
Support for ARIA
This commit is contained in:
parent
45f216b8a1
commit
6b3cdb5033
42 changed files with 159 additions and 148 deletions
|
@ -30,7 +30,7 @@
|
|||
<ul class="section-gemini-workspaces">
|
||||
{{#each workspaces as |card|}}
|
||||
<li class="section-gemini-workspace" id="gemini-workspace-{{card.Id}}" title="{{card.Title}}">
|
||||
<div class="section-gemini-card" style="background-color:{{card.Color}};" {{action "onWorkspaceChange" card.Id}}>{{card.Key}}</div>
|
||||
<div class="section-gemini-card" style="background-color:{{card.Color}};" {{action "onWorkspaceChange" card.Id}} role="button" tabindex="0">{{card.Key}}</div>
|
||||
{{#if card.selected}}
|
||||
<div class="section-gemini-selected-card">✓</div>
|
||||
{{/if}}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
{{/unless}}
|
||||
{{/if}}
|
||||
{{#if authenticated}}
|
||||
<form {{action "onPreview"}}>
|
||||
<form {{action "onPreview"}} role="form">
|
||||
<div class="form-group">
|
||||
<label for="jira-jql">Jira Query Language</label>
|
||||
{{focus-input id="jira-jql" type="text" value=config.jql class="form-control" placeholder="e.g. (status = resolved AND project = SysAdmin) OR assignee = bobsmith"}}
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
</div>
|
||||
<div class="grid-cell-2">
|
||||
{{#if authenticated}}
|
||||
<form {{action "onAction" on="submit"}}>
|
||||
<form {{action "onAction" on="submit"}} role="form">
|
||||
<div class="form-group">
|
||||
<label for="papertrail-query">Search query</label>
|
||||
{{input id="papertrail-query" type="text" class="form-control mousetrap" value=config.query}}
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
<div class="form-group">
|
||||
<label for="new-space-name">Sidebar</label>
|
||||
<select onchange={{action "onSetSidebar" value="target.value"}} class="form-control">
|
||||
<select onchange={{action "onSetSidebar" value="target.value"}} class="form-control" role="button" tabindex="0">
|
||||
<option value="none" selected={{is-equal pdfOption.sidebar "none"}}>
|
||||
None
|
||||
</option>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<div class="section-trello-board" style= {{boardStyle}}>
|
||||
<div class="section-trello-board-title">{{config.board.name}}</div>
|
||||
{{#each config.lists as |list|}}
|
||||
<div class="section-trello-list" {{action "onListCheckbox" list.id}}>
|
||||
<div class="section-trello-list" {{action "onListCheckbox" list.id}} role="button" tabindex="0">
|
||||
{{#if list.included}}
|
||||
<i class="section-trello-list-checkbox dicon {{constants.Icon.CheckboxChecked}}" />
|
||||
{{else}}
|
||||
|
@ -49,4 +49,4 @@
|
|||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{/section/base-editor}}
|
||||
{{/section/base-editor}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue