Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion guidelines/guidelines.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
}

.change {
display:inline;
display: inline;
color: #fff;
background: #B50000;
border-radius: 0.25em;
padding: 0.25em;
margin: 0 0.25em 0 0;
font-weight: bold;
}

.new {
Expand Down
5 changes: 0 additions & 5 deletions script/wcag.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@ function linkUnderstanding() {
}

function addTextSemantics() {
// put brackets around the change marker
document.querySelectorAll('p.change').forEach(function(node){
var change = node.textContent;
node.textContent = "[" + change + "]";
})
// put level before and parentheses around the conformance level marker
document.querySelectorAll('p.conformance-level').forEach(function(node){
var level = node.textContent;
Expand Down