-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
a11y(arpa): fix headings and color contrast issues #3811
base: main
Are you sure you want to change the base?
Conversation
QA Summary
Test CoverageCoverage report for `packages/client`
Coverage report for `packages/server`
|
@@ -86,7 +86,7 @@ hr { | |||
color: $positive-default; | |||
} | |||
|
|||
.usdr-tab-nav-link { | |||
.usdr-link { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note to reviewer: renamed the class to be general as it only contains color setting.
Terraform Summary
Hint: If "Terraform Format & Style" failed, run OutputValidation Output
Plan Summary
Pusher: @lsr-explore, Action: |
5dd82b9
to
3f8da5b
Compare
3f8da5b
to
0b8830c
Compare
@@ -5,7 +5,7 @@ | |||
<div class="mb-4"> | |||
<router-link | |||
to="/agencies/new" | |||
class="btn btn-primary" | |||
class="btn usdr-btn-primary" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -16,7 +16,7 @@ | |||
</div> | |||
<div class="form-group"> | |||
<button | |||
class="btn btn-primary" | |||
class="btn usdr-btn-primary" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -79,7 +79,7 @@ export default { | |||
name: 'submit', | |||
type: 'submit', | |||
label: 'Submit', | |||
inputClass: ['btn', 'btn-primary'], | |||
inputClass: ['btn', 'usdr-btn-primary'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -97,7 +98,7 @@ | |||
<div class="modal-footer"> | |||
<button | |||
type="button" | |||
class="btn btn-primary" | |||
class="btn usdr-btn-primary" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -122,7 +122,7 @@ export default { | |||
computed: { | |||
revalidateBtnClass() { | |||
return { | |||
'btn-primary': !this.commit, | |||
'usdr-btn-primary': !this.commit, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -4,7 +4,7 @@ | |||
<div class="mb-4"> | |||
<router-link | |||
to="/users/new" | |||
class="btn btn-primary" | |||
class="btn usdr-btn-primary" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -1,6 +1,6 @@ | |||
<template> | |||
<div> | |||
<h2>User</h2> | |||
<h1>User</h1> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note to reviewer: before/after screenshots
Color Contrast was resolved with change above to StandardForm.vue
Before
After
@@ -59,7 +59,7 @@ | |||
<div class="col-sm-2" /> | |||
<div class="col-sm-10"> | |||
<button | |||
class="btn btn-primary" | |||
class="btn usdr-btn-primary" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a75ee31
to
46be599
Compare
@@ -215,7 +218,7 @@ export default { | |||
{ | |||
label: 'EC Code', | |||
field: 'ec_code', | |||
tdClass: (row) => (!row.ec_code ? 'table-danger' : undefined), | |||
tdClass: (row) => (!row.ec_code ? 'usdr-table-danger' : undefined), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
46be599
to
df092c6
Compare
Ticket #3758
(TBD - Will create a different ticket for the issues addressed here before requesting review)
Description
Address the following accessibility issues
(See comments associated with code file changes for screenshots)
Adding tests to improve the coverage for some of the ARPA views.
(TBD - will update more views before requesting review)
Before
After
Screenshots / Demo Video
See comments associated with code file changes before/after screenshots
Testing
Automated and Unit Tests
Manual tests for Reviewer
Checklist