Skip to content

Commit

Permalink
fix ally issue with icon on moderated grade page
Browse files Browse the repository at this point in the history
fixes CNVS-25201

After an assignments grades have been posted via moderated grades,
there is an attention icon that shows up. The screenreader picks this
icon up in screenreaders. We want to hide this.

Test Plan
Set up an assignment for moderated grading
Post the grades with reviewers
With a screenreader in safari (VO) navigate to the attention alert box
The alert text should be read, however the 'i' icon should be invisible
to screenreaders

Change-Id: If8f3e48ef9565eba6e2f4cab142f783492765c94
Reviewed-on: https://gerrit.instructure.com/67739
Tested-by: Jenkins
Reviewed-by: Clay Diffrient <[email protected]>
QA-Review: Jahnavi Yetukuri <[email protected]>
Product-Review: Sterling Cobb <[email protected]>
  • Loading branch information
fourcolors committed Nov 24, 2015
1 parent 72e445c commit 3ae86f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/jsx/assignments/ModerationHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ define([
return (

<div className="ic-notification">
<div className="ic-notification__icon" role="presentation">
<div className="ic-notification__icon" aria-hidden='true' role="presentation">
<i className="icon-info"></i>
</div>
<div className="ic-notification__content">
Expand Down

0 comments on commit 3ae86f7

Please sign in to comment.