branch ramonville updated (ce8d7371 -> 45aba546)
This is an automated email from the git hooks/post-receive script. New change to branch ramonville in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git from ce8d7371 Fix some aria stuff (work in progress) new 45aba546 Continue fixing some aria stuff (work in progress) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 45aba5464d5bd65f402f5d417a494a2503e11928 Author: jcouteau <couteau@codelutin.com> Date: Tue Nov 13 21:48:17 2018 +0100 Continue fixing some aria stuff (work in progress) Summary of changes: .../src/main/web/tag/components/Card.tag.html | 4 ++-- .../web/tag/components/ContextualMenu.tag.html | 2 +- .../main/web/tag/components/LoadingCard.tag.html | 2 +- .../src/main/web/tag/components/Search.tag.html | 4 ++-- .../tag/components/UserEmailAddressList.tag.html | 6 ++--- .../main/web/tag/components/date-picker.tag.html | 2 +- .../web/tag/components/date-time-picker.tag.html | 2 +- .../main/web/tag/components/time-picker.tag.html | 2 +- .../web/tag/favoriteList/ChildListCard.tag.html | 4 ++-- .../web/tag/favoriteList/FavoriteListCard.tag.html | 4 ++-- .../web/tag/favoriteList/FavoriteLists.tag.html | 2 +- .../src/main/web/tag/poll/Choice.tag.html | 6 ++--- .../src/main/web/tag/poll/Choices.tag.html | 6 ++--- .../src/main/web/tag/poll/Comments.tag.html | 28 +++++++++++----------- .../src/main/web/tag/poll/Description.tag.html | 4 ++-- .../src/main/web/tag/poll/EditVote.tag.html | 10 ++++---- .../src/main/web/tag/poll/EditVoteOrder.tag.html | 6 ++--- .../src/main/web/tag/poll/Participants.tag.html | 10 ++++---- .../src/main/web/tag/poll/Poll.tag.html | 24 +++++++++---------- .../src/main/web/tag/poll/PollCard.tag.html | 4 ++-- .../src/main/web/tag/poll/Polls.tag.html | 2 +- .../src/main/web/tag/poll/Settings.tag.html | 24 +++++++++---------- .../src/main/web/tag/poll/Summary.tag.html | 2 +- .../src/main/web/tag/poll/Votes.tag.html | 2 +- .../src/main/web/tag/poll/VotesTable.tag.html | 10 ++++---- 25 files changed, 86 insertions(+), 86 deletions(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch ramonville in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 45aba5464d5bd65f402f5d417a494a2503e11928 Author: jcouteau <couteau@codelutin.com> Date: Tue Nov 13 21:48:17 2018 +0100 Continue fixing some aria stuff (work in progress) --- .../src/main/web/tag/components/Card.tag.html | 4 ++-- .../web/tag/components/ContextualMenu.tag.html | 2 +- .../main/web/tag/components/LoadingCard.tag.html | 2 +- .../src/main/web/tag/components/Search.tag.html | 4 ++-- .../tag/components/UserEmailAddressList.tag.html | 6 ++--- .../main/web/tag/components/date-picker.tag.html | 2 +- .../web/tag/components/date-time-picker.tag.html | 2 +- .../main/web/tag/components/time-picker.tag.html | 2 +- .../web/tag/favoriteList/ChildListCard.tag.html | 4 ++-- .../web/tag/favoriteList/FavoriteListCard.tag.html | 4 ++-- .../web/tag/favoriteList/FavoriteLists.tag.html | 2 +- .../src/main/web/tag/poll/Choice.tag.html | 6 ++--- .../src/main/web/tag/poll/Choices.tag.html | 6 ++--- .../src/main/web/tag/poll/Comments.tag.html | 28 +++++++++++----------- .../src/main/web/tag/poll/Description.tag.html | 4 ++-- .../src/main/web/tag/poll/EditVote.tag.html | 10 ++++---- .../src/main/web/tag/poll/EditVoteOrder.tag.html | 6 ++--- .../src/main/web/tag/poll/Participants.tag.html | 10 ++++---- .../src/main/web/tag/poll/Poll.tag.html | 24 +++++++++---------- .../src/main/web/tag/poll/PollCard.tag.html | 4 ++-- .../src/main/web/tag/poll/Polls.tag.html | 2 +- .../src/main/web/tag/poll/Settings.tag.html | 24 +++++++++---------- .../src/main/web/tag/poll/Summary.tag.html | 2 +- .../src/main/web/tag/poll/Votes.tag.html | 2 +- .../src/main/web/tag/poll/VotesTable.tag.html | 10 ++++---- 25 files changed, 86 insertions(+), 86 deletions(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/components/Card.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/Card.tag.html index 890b7932..b15a2c3f 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/Card.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/Card.tag.html @@ -25,13 +25,13 @@ import "./Avatar.tag.html"; <a class="info" title={parent._t.edit} onclick={opts.onedit}> - <i class="fa fa-pencil"></i> + <i class="fa fa-pencil" aria-hidden="true"></i> </a> <yield from="actions"/> <a class="error" title={parent._t.delete} onclick={opts.ondelete}> - <i class="fa fa-times"></i> + <i class="fa fa-times" aria-hidden="true"></i> </a> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/components/ContextualMenu.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/ContextualMenu.tag.html index c8cbdfe2..994d2d8f 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/ContextualMenu.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/ContextualMenu.tag.html @@ -19,7 +19,7 @@ #L% --> <ContextualMenu class={open : opts.openForce}> - <i class="icon fa {opts.icon || 'fa-plus'}"></i> + <i class="icon fa {opts.icon || 'fa-plus'}" aria-hidden="true"></i> <div class="links"> <yield/> diff --git a/pollen-ui-riot-js/src/main/web/tag/components/LoadingCard.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/LoadingCard.tag.html index 79d06d3e..99a50a26 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/LoadingCard.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/LoadingCard.tag.html @@ -20,7 +20,7 @@ --> <LoadingCard> <div class="spinner"> - <i class="fa fa-spinner fa-pulse"></i> + <i class="fa fa-spinner fa-pulse" aria-hidden="true"></i> </div> <div class="count"> <yield/> diff --git a/pollen-ui-riot-js/src/main/web/tag/components/Search.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/Search.tag.html index 571e7a06..71859f27 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/Search.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/Search.tag.html @@ -21,7 +21,7 @@ <Search> <div class="o-form-element search"> <div class="o-field o-field--icon-left o-field--icon-right"> - <i class="fa fa-fw fa-search c-icon"></i> + <i class="fa fa-fw fa-search c-icon" aria-hidden="true"></i> <input class="c-field" id="search" name="search" @@ -29,7 +29,7 @@ oninput={search} placeholder={_t.label} type="text"> - <i class="fa fa-fw fa-times c-icon" + <i class="fa fa-fw fa-times c-icon" aria-hidden="true" if={refs && refs.search.value} onclick={deleteSearch}></i> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/components/UserEmailAddressList.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/UserEmailAddressList.tag.html index 8d14a457..0807318e 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/UserEmailAddressList.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/UserEmailAddressList.tag.html @@ -19,7 +19,7 @@ #L% --> <UserEmailAddressList> - <h3 class="c-heading"><i class="fa fa-at"/> {_t.emailAddresses}</h3> + <h3 class="c-heading"><i class="fa fa-at" aria-hidden="true"/> {_t.emailAddresses}</h3> <ul> <li each="{emailAddress, index in opts.user.emailAddresses}" class="email-address {index % 2 == 0 ? 'even' : 'odd'}"> <div class="email-address-header"> @@ -44,7 +44,7 @@ type="button" class="c-button u-small c-button--info" title="{parent._t.defaultEmailAddress}" onclick="{parent.setDefaultEmailAddress(emailAddress.id, index)}"> - <i class="fa fa-envelope"></i> + <i class="fa fa-envelope" aria-hidden="true"></i> </button> <button type="button" class="c-button u-small c-button--warning" @@ -57,7 +57,7 @@ type="button" class="c-button u-small c-button--error" title="{parent._t.deleteEmailAddress}" onclick="{parent.deleteEmailAddress(emailAddress.id, index)}"> - <i class="fa fa-trash"></i> + <i class="fa fa-trash" aria-hidden="true"></i> </button> </div> <form class="identity-form" show={emailAddress.showKey}> diff --git a/pollen-ui-riot-js/src/main/web/tag/components/date-picker.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/date-picker.tag.html index 8bcffc5c..431e308d 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/date-picker.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/date-picker.tag.html @@ -19,7 +19,7 @@ #L% --> <date-picker> - <i if={opts.iconleftclass} class="fa fa-fw fa-{opts.iconleftclass} c-icon"></i> + <i if={opts.iconleftclass} class="fa fa-fw fa-{opts.iconleftclass} c-icon" aria-hidden="true"></i> <input type="date" class="calendar-field {opts.inputclass}" required={opts.required} diff --git a/pollen-ui-riot-js/src/main/web/tag/components/date-time-picker.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/date-time-picker.tag.html index b7f13bb2..cb546401 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/date-time-picker.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/date-time-picker.tag.html @@ -42,7 +42,7 @@ import "./time-picker.tag.html"; class="c-button c-button--brand input-right-button" disabled={opts.disabled} onclick="{reset}"> - <i class="fa fa-fw fa-times"></i> + <i class="fa fa-fw fa-times" aria-hidden="true"></i> </a> </div> <input if={session.dateTimeInputSupported} diff --git a/pollen-ui-riot-js/src/main/web/tag/components/time-picker.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/time-picker.tag.html index 20d5d2f2..2bc14e2a 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/time-picker.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/time-picker.tag.html @@ -19,7 +19,7 @@ #L% --> <time-picker> - <i if={opts.iconleftclass} class="fa fa-fw fa-{opts.iconleftclass} c-icon"></i> + <i if={opts.iconleftclass} class="fa fa-fw fa-{opts.iconleftclass} c-icon" aria-hidden="true"></i> <input if="{session.timeInputSupported}" type="time" class="calendar-field {opts.inputclass}" diff --git a/pollen-ui-riot-js/src/main/web/tag/favoriteList/ChildListCard.tag.html b/pollen-ui-riot-js/src/main/web/tag/favoriteList/ChildListCard.tag.html index 29e4b557..f7e023df 100644 --- a/pollen-ui-riot-js/src/main/web/tag/favoriteList/ChildListCard.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/favoriteList/ChildListCard.tag.html @@ -31,10 +31,10 @@ import "./ChildListEditModal.tag.html"; class="list-card"> <yield to="detail"> <div> - {parent.opts.childList.child.countChildren} <i class="fa fa-users"></i> + {parent.opts.childList.child.countChildren} <i class="fa fa-users" aria-hidden="true"></i> </div> <div> - {parent.opts.childList.child.countMembers} <i class="fa fa-user"></i> + {parent.opts.childList.child.countMembers} <i class="fa fa-user" aria-hidden="true"></i> </div> </yield> </Card> diff --git a/pollen-ui-riot-js/src/main/web/tag/favoriteList/FavoriteListCard.tag.html b/pollen-ui-riot-js/src/main/web/tag/favoriteList/FavoriteListCard.tag.html index 5ef19c13..1f3045af 100644 --- a/pollen-ui-riot-js/src/main/web/tag/favoriteList/FavoriteListCard.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/favoriteList/FavoriteListCard.tag.html @@ -29,10 +29,10 @@ import "./FavoriteListEditModal.tag.html"; class="list-card"> <yield to="detail"> <div> - {parent.opts.favoriteList.countChildren} <i class="fa fa-users"></i> + {parent.opts.favoriteList.countChildren} <i class="fa fa-users" aria-hidden="true"></i> </div> <div> - {parent.opts.favoriteList.countMembers} <i class="fa fa-user"></i> + {parent.opts.favoriteList.countMembers} <i class="fa fa-user" aria-hidden="true"></i> </div> </yield> </Card> diff --git a/pollen-ui-riot-js/src/main/web/tag/favoriteList/FavoriteLists.tag.html b/pollen-ui-riot-js/src/main/web/tag/favoriteList/FavoriteLists.tag.html index db929f3d..ea94d92d 100644 --- a/pollen-ui-riot-js/src/main/web/tag/favoriteList/FavoriteLists.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/favoriteList/FavoriteLists.tag.html @@ -39,7 +39,7 @@ import "./FavoriteListEditModal.tag.html"; href="{session.configuration.endPoint}/v1/favoriteLists/exports" target="_blank" title={_t.export}> - <i class="fa fa-download"></i> + <i class="fa fa-download" aria-hidden="true"></i> </a> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Choice.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Choice.tag.html index 38ab881e..1ac6b7c3 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Choice.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Choice.tag.html @@ -56,7 +56,7 @@ import "../components/time-picker.tag.html"; <img src="{resourceService.getPreviewUrl(originalFile)}"/> <span> {originalFile.name} - <i class="fa fa-remove" + <i class="fa fa-remove" aria-hidden="true" if={!opts.disabled} onclick="{deleteFile}"/> </span> @@ -67,12 +67,12 @@ import "../components/time-picker.tag.html"; <div> <span if={!opts.disabled && !newFile} onclick="{addFile}"> - <i class="fa fa-plus"/> + <i class="fa fa-plus" aria-hidden="true"/> {_t.addFile} </span> <span if={!opts.disabled && newFile}> {newFile.name} - <i class="fa fa-remove" onclick={deleteFile}/> + <i class="fa fa-remove" aria-hidden="true" onclick={deleteFile}/> </span> <input type="file" ref="choiceResource" diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Choices.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Choices.tag.html index 8b73225e..68c314d5 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Choices.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Choices.tag.html @@ -30,7 +30,7 @@ <div class="c-input-group"> <div class="drag-anchor o-field" ref="anchor"> <div class="c-field"> - <i class="fa fa-arrows-v "/> + <i class="fa fa-arrows-v " aria-hidden="true"/> </div> </div> <div class="o-field"> @@ -46,7 +46,7 @@ show={!parent.form.hasVotes} disabled={parent.form.hasVotes || parent.form.model.closed} onclick="{parent.removeChoice(index)}"> - <i class="fa fa-trash"/> + <i class="fa fa-trash" aria-hidden="true"/> </button> </div> </div> @@ -59,7 +59,7 @@ show={!form.hasVotes} disabled={form.hasVotes || form.model.closed} onclick="{addOneChoice}"> - <i class="fa fa-plus"/> {_t.moreChoice} + <i class="fa fa-plus" aria-hidden="true"/> {_t.moreChoice} </button> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Comments.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Comments.tag.html index fd714aa1..810a8620 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Comments.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Comments.tag.html @@ -30,7 +30,7 @@ import "./Report.tag.html"; class="c-button c-button--error close-btn" onclick="{closeComments}" title={_t.close}> - <i class="fa fa-times"/> + <i class="fa fa-times" aria-hidden="true"/> </button> <div class="window colors-default" ref="window"> @@ -41,14 +41,14 @@ import "./Report.tag.html"; class="c-button c-button--error close-btn-inner" onclick="{closeComments}" title={_t.close}> - <i class="fa fa-times"/> + <i class="fa fa-times" aria-hidden="true"/> </button> </div> <form class="comment-form"> <HumanInput onsubmit="{addComment}"/> <div class="o-form-element"> <div class="o-field o-field--icon-left"> - <i class="fa fa-fw fa-user c-icon"></i> + <i class="fa fa-fw fa-user c-icon" aria-hidden="true"></i> <input class="c-field" type="text" name="author" @@ -75,7 +75,7 @@ import "./Report.tag.html"; <button type="submit" class="c-button c-button--info pull-right" disabled="{sendingComment}"> - <i class="fa fa-paper-plane"/> + <i class="fa fa-paper-plane" aria-hidden="true"/> {_t.sendComment} </button> </div> @@ -91,13 +91,13 @@ import "./Report.tag.html"; class="c-button c-button--info" onclick="{toggleSort}" title={orderDesc ? _t.sort_desc : _t.sort_asc}> - <i class="fa fa-sort-amount-{desc : pagination.desc, asc : !pagination.desc}"/> + <i class="fa fa-sort-amount-{desc : pagination.desc, asc : !pagination.desc}" aria-hidden="true"/> </button> <button type="button" class="c-button c-button--info" onclick="{scrollBottom}" title={_t.goToEnd}> - <i class="fa fa-arrow-down"/> + <i class="fa fa-arrow-down" aria-hidden="true"/> </button> </div> @@ -126,13 +126,13 @@ import "./Report.tag.html"; class="c-button c-button--error u-small" onclick="{parent.parent.deleteComment(element)}" title={parent.parent._t.delete}> - <i class="fa fa-trash"/> + <i class="fa fa-trash" aria-hidden="true"/> </button> <button type="button" class="c-button c-button--brand u-small" onclick="{parent.parent.startEditComment(element)}" title={parent.parent._t.edit}> - <i class="fa fa-pencil-square-o"/> + <i class="fa fa-pencil-square-o" aria-hidden="true"/> </button> </span> </div> @@ -149,7 +149,7 @@ import "./Report.tag.html"; <div class="comment-user"> <div class="o-form-element"> <div class="o-field o-field--icon-left"> - <i class="fa fa-fw fa-user c-icon"></i> + <i class="fa fa-fw fa-user c-icon" aria-hidden="true"></i> <input class="c-field" type="text" name="editAuthor" @@ -182,13 +182,13 @@ import "./Report.tag.html"; type="button" onclick="{parent.parent.cancelEditComment}" title={parent.parent._t.cancelEditComment}> - <i class="fa fa-remove"/> + <i class="fa fa-remove" aria-hidden="true"/> {parent.parent._t.cancelEditComment} </button> <button class="c-button c-button--success pull-right" type="submit" title={parent.parent._t.updateComment}> - <i class="fa fa-check"/> + <i class="fa fa-check" aria-hidden="true"/> {parent.parent._t.updateComment} </button> </div> @@ -196,7 +196,7 @@ import "./Report.tag.html"; </div> </yield> <yield to="loading"> - <i class="fa fa-spinner fa-pulse"></i> + <i class="fa fa-spinner fa-pulse" aria-hidden="true"></i> </yield> </LazyLoad> <div class="actions-right" show="{poll.commentCount > 0}"> @@ -204,7 +204,7 @@ import "./Report.tag.html"; class="c-button c-button--info" onclick="{scrollTop}" title={_t.goToStart}> - <i class="fa fa-arrow-up"/> + <i class="fa fa-arrow-up" aria-hidden="true"/> </button> </div> </div> @@ -215,7 +215,7 @@ import "./Report.tag.html"; <button type="button" class="c-button c-button--info open-btn not-printable {open : open}" onclick="{openComments}"> - <i class="fa fa-comment"/> {poll.commentCount} {poll.commentCount <= 1 ? _t.one : _t.many} + <i class="fa fa-comment" aria-hidden="true"/> {poll.commentCount} {poll.commentCount <= 1 ? _t.one : _t.many} </button> <script type="es6"> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Description.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Description.tag.html index 99341a78..415d8a87 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Description.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Description.tag.html @@ -23,7 +23,7 @@ <Description> <div class="description-part"> - <h4><i class="fa fa-info-circle"></i> {_t.info}</h4> + <h4><i class="fa fa-info-circle" aria-hidden="true"></i> {_t.info}</h4> <div class="o-form-element"> <label class="c-label" for="title">{_t.title}</label> @@ -52,7 +52,7 @@ </div> <div class="description-part"> - <h4><i class="fa fa-user-circle"></i> {_t.user}</h4> + <h4><i class="fa fa-user-circle" aria-hidden="true"></i> {_t.user}</h4> <div class="o-form-element"> <label class="c-label" for="name">{_t.name}</label> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html index a387c43f..b6cbc6dc 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html @@ -40,7 +40,7 @@ <div class="current-voter separator-right"> <div class="o-field o-field--icon-left o-field--icon-right" if={poll.canVote || voteInEdition} > - <i class="fa fa-fw fa-user c-icon"></i> + <i class="fa fa-fw fa-user c-icon" aria-hidden="true"></i> <input class="c-field {c-field--error: !voteInEdition && error && error['voter.name']}" type="text" ref="voterName" @@ -101,7 +101,7 @@ <div if={poll.resultIsVisible} class="score-choice"> <span if={!choice.score}>{parent._t.noVote}</span> <span if={choice.score}> - <i if="{choice.score.scoreOrder === 0}" class="fa fa-trophy fa-15x winner"></i> + <i if="{choice.score.scoreOrder === 0}" class="fa fa-trophy fa-15x winner" aria-hidden="true"></i> <span if={!pollTypeSelect}> {choice.score.scoreValue} <span if={choice.score.scoreValue || !pollTypeCoombs}> @@ -140,7 +140,7 @@ name="newVote" tabindex="{(poll.choices.length + 1) * 10}" disabled={tooManyChoicesSelected || remainPoints || voting}> - <i class="fa fa-envelope"></i> + <i class="fa fa-envelope" aria-hidden="true"></i> {_t.toVote} </button> <button if="{voteInEdition}" @@ -149,7 +149,7 @@ tabindex="{(poll.choices.length + 2) * 10}" onclick="{cancelEditVote}" disabled={voting}> - <i class="fa fa-remove"></i> + <i class="fa fa-remove" aria-hidden="true"></i> {_t.cancelEdition} </button> <button if="{voteInEdition}" @@ -157,7 +157,7 @@ tabindex="{(poll.choices.length + 1) * 10}" disabled={tooManyChoicesSelected || remainPoints || voting} type="submit"> - <i class="fa fa-check"></i> + <i class="fa fa-check" aria-hidden="true"></i> {_t.validateEdition} </button> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/EditVoteOrder.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/EditVoteOrder.tag.html index 3d11cf8e..aae03338 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/EditVoteOrder.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/EditVoteOrder.tag.html @@ -27,7 +27,7 @@ <div class="current-voter"> <div class="o-field o-field--icon-left o-field--icon-right" if={poll.canVote || voteInEdition} > - <i class="fa fa-fw fa-user c-icon"></i> + <i class="fa fa-fw fa-user c-icon" aria-hidden="true"></i> <input class="c-field {c-field--error: !voteInEdition && error && error['voter.name']}" type="text" ref="voterName" @@ -44,9 +44,9 @@ </div> </div> <div class="choicesScale" ref="scale"> - <i class="fa fa-plus-circle"></i> + <i class="fa fa-plus-circle" aria-hidden="true"></i> {maxChoiceNumber ? _l("choicesScaleHelper_withMax", maxChoiceNumber) : _t.choicesScaleHelper} - <i class="fa fa-minus-circle"></i> + <i class="fa fa-minus-circle" aria-hidden="true"></i> </div> <div class="choicesDock" ref="dock"> <button if={!voteInEdition} diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Participants.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Participants.tag.html index 3f1206ba..570e435e 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Participants.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Participants.tag.html @@ -30,7 +30,7 @@ href="{parent.session.configuration.endPoint}/v1/polls/{poll.id}/participants/exports?{poll.permission ? 'permission=' + poll.permission : ''}" target="_blank" title={_t.download_title}> - <i class="fa fa-download"></i> + <i class="fa fa-download" aria-hidden="true"></i> {_t.download} </a> </div> @@ -39,8 +39,8 @@ <div class="participant"> <div class="voting"> <span class="fa-stack fa-lg"> - <i class="fa fa-square-o fa-stack-1x"></i> - <i show={element.voting} class="fa fa-check fa-stack-1x success"></i> + <i class="fa fa-square-o fa-stack-1x" aria-hidden="true"></i> + <i show={element.voting} class="fa fa-check fa-stack-1x success" aria-hidden="true"></i> </span> </div> <div class="avatar"> @@ -55,10 +55,10 @@ <div class="participant"> <div class="voting"></div> <div class="avatar"> - <i class="fa fa-user-circle c-icon"></i> + <i class="fa fa-user-circle c-icon" aria-hidden="true"></i> </div> <div class="name"> - <i class="fa fa-spinner fa-pulse"></i> + <i class="fa fa-spinner fa-pulse" aria-hidden="true"></i> </div> </div> </yield> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html index 2f2e733f..5420f3c1 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html @@ -42,32 +42,32 @@ <div class="tab-container"> <div class="tab {selected : selectedTab === 'votes'}"> <a href="#poll/{poll.id}/vote{poll.getPermission()?'/' + poll.getPermission() : ''}"> - <i class="fa fa-thumbs-o-up fa-flip-horizontal fa-15x"></i> {_t.tab_votes} ({poll.voteCount}) + <i class="fa fa-thumbs-o-up fa-flip-horizontal fa-15x" aria-hidden="true"></i> {_t.tab_votes} ({poll.voteCount}) </a> </div> <div class="tab {selected : selectedTab === 'results'}"> <a href="#poll/{poll.id}/result{poll.getPermission()?'/' + poll.getPermission() : ''}"> - <i class="fa fa-trophy fa-15x"></i> {_t.tab_results} + <i class="fa fa-trophy fa-15x" aria-hidden="true"></i> {_t.tab_results} </a> </div> <div if="{poll.participantsIsVisible}" class="tab {selected : selectedTab === 'participants'}"> <a href="#poll/{poll.id}/participants{poll.getPermission()?'/' + poll.getPermission() : ''}"> - <i class="fa fa-list fa-15x"></i> {_t.tab_participant} + <i class="fa fa-list fa-15x" aria-hidden="true"></i> {_t.tab_participant} </a> </div> </div> <div if="{poll.permission}" class="poll-options dropdown"> - <a class="header-link"><i class="fa fa-bars"/></a> + <a class="header-link"><i class="fa fa-bars" aria-hidden="true"/></a> <div class="dropdown-content"> <a href="#poll/{poll.id}/summary/{poll.permission}"> - <i class="link fa fa-pencil-square-o"/> + <i class="link fa fa-pencil-square-o" aria-hidden="true"/> {_t.editPoll} </a> <a onclick="{deletePoll}"> - <i class="link fa fa-trash"/> + <i class="link fa fa-trash" aria-hidden="true"/> {_t.deletePoll} </a> </div> @@ -78,14 +78,14 @@ <div class="poll-info"> <div class="left-icon"> - <i class="fa fa-clock-o"></i> + <i class="fa fa-clock-o" aria-hidden="true"></i> <p>{_t.dateVotes}</p> <p>{poll.endDate ? _t.dateFrom : _t.dateFromNoEnd} <span class="brand">{formatDate(poll.beginDate)}</span></p> <p if={poll.endDate}> {_t.dateTo} <span class="brand">{formatDate(poll.endDate)}</span></p> </div> <div class="left-icon" if={poll.choiceAddAllowed}> - <i class="fa fa-check-square"></i> + <i class="fa fa-check-square" aria-hidden="true"></i> <p>{_t.dateAddChoices}</p> <p> {poll.endChoiceDate || poll.endDate ? _t.dateFrom : _t.dateFromNoEnd} @@ -106,12 +106,12 @@ </div> <div class="left-icon"> - <i class="fa fa-user-circle"></i> + <i class="fa fa-user-circle" aria-hidden="true"></i> <p>{_t.createdBy} <span class="brand">{poll.creatorName}</span></p> </div> <div class="left-icon" onclick="{toggleMaxVoters}"> - <i class="fa fa-envelope"></i> + <i class="fa fa-envelope" aria-hidden="true"></i> <p> <span if={poll.voteCount > 0} class="brand">{poll.voteCount}</span> {poll.voteCount === 0 ? _t.noVote : (poll.voteCount === 1 ? _t.vote : _t.votes)} @@ -122,14 +122,14 @@ </div> <div class="left-icon" if="{poll.pollType === 'RESTRICTED'}"> - <i class="fa fa-users"></i> + <i class="fa fa-users" aria-hidden="true"></i> <p><span class="brand">{poll.participantCount}</span> {_t.subscribers}</p> <p><span class="brand">{((poll.voteCount / poll.participantCount) * 100).toFixed(2)} %</span> {_t.participation}</p> </div> </div> <div class="poll-description left-icon" if="{poll.description}"> - <i class="fa fa-info-circle"></i> + <i class="fa fa-info-circle" aria-hidden="true"></i> <p><MultiLineLabel label="{poll.description}"></MultiLineLabel></p> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/PollCard.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/PollCard.tag.html index 083ba258..5ba047c7 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/PollCard.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/PollCard.tag.html @@ -26,13 +26,13 @@ import "../components/Avatar.tag.html"; class="info" title={_t.edit} href="#poll/{opts.poll.id}/edit/{opts.poll.permission}"> - <i class="fa fa-pencil"></i> + <i class="fa fa-pencil" aria-hidden="true"></i> </a> <a class="error" if={opts.poll.permission} title={_t.delete} onclick={deletePoll}> - <i class="fa fa-times"></i> + <i class="fa fa-times" aria-hidden="true"></i> </a> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Polls.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Polls.tag.html index 578fe94d..c418046a 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Polls.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Polls.tag.html @@ -54,7 +54,7 @@ import "../components/Search.tag.html"; <div class="o-form-element"> <label class="c-label" for="pollToAssign">{parent._t.assignPollToMe_desc}</label> <div class="o-field o-field--icon-left"> - <i class="fa fa-fw fa-link c-icon"></i> + <i class="fa fa-fw fa-link c-icon" aria-hidden="true"></i> <input class="c-field" type="text" name="pollToAssign" diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Settings.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Settings.tag.html index eace7e03..77e8cbfd 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Settings.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Settings.tag.html @@ -29,7 +29,7 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; <Settings> <div class="form-section"> - <h4><i class="fa fa-users"></i> {_t.pollType}</h4> + <h4><i class="fa fa-users" aria-hidden="true"></i> {_t.pollType}</h4> <div class="o-form-element"> <span class="c-input-group"> <button each={type in form.types} @@ -72,7 +72,7 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; onclick={removeSuffix(index)} disabled={form.model.closed || form.model.emailAddressSuffixes.length === 1} title={_t.pollType_REGISTERED_suffix_remove}> - <i class="fa fa-times"></i> + <i class="fa fa-times" aria-hidden="true"></i> </button> </div> </div> @@ -82,7 +82,7 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; title={_t.pollType_REGISTERED_suffix_add_title} disabled={form.model.closed} type="button"> - <i class="fa fa-plus"></i> + <i class="fa fa-plus" aria-hidden="true"></i> {_t.pollType_REGISTERED_suffix_add} </button> </div> @@ -91,7 +91,7 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; </div> <div class="form-section" show={form.creation}> - <h4><i class="fa fa-cogs"></i> {_t.basic_usage}</h4> + <h4><i class="fa fa-cogs" aria-hidden="true"></i> {_t.basic_usage}</h4> <div class="o-form-element"> <Checkbox label="{_t.use_basic_usage}" disabled={form.model.closed} @@ -116,7 +116,7 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; <div class="settings-options-row"> <div class="form-section"> <h4> - <i class="fa fa-cog"></i> + <i class="fa fa-cog" aria-hidden="true"></i> {_t.nav_voteCountingType} <i class="info-label fa fa-question-circle" aria-hidden="true" onclick="{toggleVoteCountingTypeHelp}"></i> </h4> @@ -157,7 +157,7 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; </div> </div> <div class="form-section"> - <h4><i class="fa fa-check-square"></i> {_t.nav_choices}</h4> + <h4><i class="fa fa-check-square" aria-hidden="true"></i> {_t.nav_choices}</h4> <div class="o-form-element"> <Checkbox label="{_t.addChoices}" name="choiceAddAllowed" @@ -214,7 +214,7 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; <div class="settings-options-row"> <div class="form-section"> - <h4><i class="fa fa-envelope"></i> {_t.nav_votes}</h4> + <h4><i class="fa fa-envelope" aria-hidden="true"></i> {_t.nav_votes}</h4> <div class="o-form-element"> <Checkbox label="{_t.votePeriod}" name="votePeriod" @@ -276,7 +276,7 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; </div> </div> <div class="form-section"> - <h4><i class="fa fa-trophy"></i> {_t.nav_result}</h4> + <h4><i class="fa fa-trophy" aria-hidden="true"></i> {_t.nav_result}</h4> <div class="o-form-element"> <label class="c-label"> {_t.resultVisibility} @@ -305,7 +305,7 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; <div class="settings-options-row"> <div class="form-section"> - <h4><i class="fa fa-comments"></i> {_t.nav_comments}</h4> + <h4><i class="fa fa-comments" aria-hidden="true"></i> {_t.nav_comments}</h4> <div class="o-form-element"> <label class="c-label"> {_t.commentVisibility} @@ -323,11 +323,11 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; </div> <div class="form-section"> - <h4><i class="fa fa-paper-plane"></i> {_t.nav_notification}</h4> + <h4><i class="fa fa-paper-plane" aria-hidden="true"></i> {_t.nav_notification}</h4> <fieldset class="o-fieldset"> <legend class="o-fieldset__legend"> {_t.notification} - <i class="fa fa-question-circle cursor-help warning" if="{!form.model.creatorEmail}" title="{_t.notification_disabled}"></i> + <i class="fa fa-question-circle cursor-help warning" aria-hidden="true" if="{!form.model.creatorEmail}" title="{_t.notification_disabled}"></i> </legend> <Checkbox label="{_t.voteNotification}" labelclass="c-field c-field--choice" @@ -352,7 +352,7 @@ import "../voteCountingType/MajorityJudgmentConfig.tag.html"; disabled={disableNotifyMeBeforePollEnds || form.model.closed} checkboxchecked={notifyMeBeforePollEnds} ontogglecheckbox={toggleNotifyMeBeforePollEnds}> - <i class="fa fa-question-circle cursor-help warning" + <i class="fa fa-question-circle cursor-help warning" aria-hidden="true" if="{checked}" title="{_t.notifyMeBeforePollEnds_disabled}"></i> </Checkbox> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Summary.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Summary.tag.html index a933ad72..568adb9b 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Summary.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Summary.tag.html @@ -90,7 +90,7 @@ <a href="mailto:?subject={opts.form.model.title}&body={opts.form.model.title}%0D%0A{opts.form.model.description}%0D%0A{voteUrl}" title="{_t.shareByEmail}" class="c-button c-button--info"> - <i class="fa fa-paper-plane"></i> + <i class="fa fa-paper-plane" aria-hidden="true"></i> </a> </div> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html index 159e7542..feb2cc26 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html @@ -62,7 +62,7 @@ class="c-button c-button--success" tooltips="{_t.addChoice}" disabled="{addingChoice}"> - <i class="fa fa-plus"></i> + <i class="fa fa-plus" aria-hidden="true"></i> </button> </div> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/VotesTable.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/VotesTable.tag.html index b741b3f9..3e40b558 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/VotesTable.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/VotesTable.tag.html @@ -44,14 +44,14 @@ if="{!parent.parent.poll.closed && element.permission}" disabled="{parent.parent.voteInEdition != null || parent.parent.voting}" onclick="{parent.parent.editVote(element)}"> - <i class="fa fa-pencil-square-o"></i> + <i class="fa fa-pencil-square-o" aria-hidden="true"></i> </button> <button type="button" class="c-button c-button--rounded u-xsmall c-button--error" if="{!parent.parent.poll.closed && (parent.parent.poll.permission || element.permission)}" disabled="{parent.parent.voteInEdition != null || parent.parent.voting}" onclick="{parent.parent.deleteVote(element)}"> - <i class="fa fa-trash"></i> + <i class="fa fa-trash" aria-hidden="true"></i> </button> </div> <div class="results separator-left {'ignored': element.ignored}" ref="results{index}"> @@ -67,14 +67,14 @@ <div class="row separator-bottom separator-right"> <div class="name separator-left"> <div class="voter-name"> - <i class="fa fa-user-circle c-icon"></i> - <i class="fa fa-spinner fa-pulse"></i> + <i class="fa fa-user-circle c-icon" aria-hidden="true"></i> + <i class="fa fa-spinner fa-pulse" aria-hidden="true"></i> </div> </div> <div class="results separator-left" ref="results{index}"> <div each="{choice in parent.poll.choices}" class="result separator-right"> - <i class="fa fa-spinner fa-pulse"></i> + <i class="fa fa-spinner fa-pulse" aria-hidden="true"></i> </div> </div> </div> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm