Skip to content

Commit

Permalink
Merge pull request #10 from lpelypenko/improveViolationNodes
Browse files Browse the repository at this point in the history
Improve violation details (added fix description and related nodes)
  • Loading branch information
lpelypenko authored Dec 24, 2020
2 parents 9cf1047 + 2b53c42 commit 6d4d1ad
Show file tree
Hide file tree
Showing 17 changed files with 37,506 additions and 10,915 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,3 @@ Temporary Items
dist/
build/
.idea
/artifacts
2,475 changes: 2,475 additions & 0 deletions artifacts/accessibilityReport.html

Large diffs are not rendered by default.

101 changes: 101 additions & 0 deletions artifacts/tcAllPassedOnlyViolations.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<style>
.violationCard {
width: 100%;
margin-bottom: 1rem;
}
.violationCardLine {
display: flex;
justify-content: space-between;
align-items: start;
}
.learnMore {
margin-bottom: 0.75rem;
white-space: nowrap;
color: #2557a7;
}
.card-link {
color: #2557a7;
}
.violationNode {
font-size: 0.75rem;
}
.wrapBreakWord {
word-break: break-word;
}
.summary {
font-size: 1rem;
}
.summarySection {
margin: 0.5rem 0;
}
.hljs {
white-space: pre-wrap;
width: 100%;
background: #f0f0f0;
}
p {
margin-top: 0.3rem;
}
li {
line-height: 1.618;
}
</style>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/styles/stackoverflow-light.min.css"
/>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/highlight.min.js"></script>
<link
rel="icon"
href="https://www.deque.com/wp-content/uploads/2018/03/cropped-DQ_SecondaryLogo_HeroBlue_RGB-1-32x32.png"
sizes="32x32"
/>
<title>AXE Accessibility Results</title>
</head>
<body>
<div style="padding: 2rem">
<h3>
AXE Accessibility Results
</h3>
<div class="summarySection">

</div>
<h5>axe-core found <span class="badge badge-success">0</span> violations</h5>
<tbody>
</tbody>
</table>
</div>

<script>
hljs.initHighlightingOnLoad();
</script>
</body>
</html>
Loading

0 comments on commit 6d4d1ad

Please sign in to comment.