We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b2d567 commit c050bccCopy full SHA for c050bcc
guidelines/guidelines.css
@@ -3,7 +3,13 @@
3
}
4
5
.change {
6
- display:inline;
+ display: inline;
7
+ color: #fff;
8
+ background: #B50000;
9
+ border-radius: 0.25em;
10
+ padding: 0.25em 0.4em;
11
+ margin: 0 0.25em 0 0;
12
+ font-weight: bold;
13
14
15
.new {
script/wcag.js
@@ -33,11 +33,6 @@ function linkUnderstanding() {
33
34
35
function addTextSemantics() {
36
- // put brackets around the change marker
37
- document.querySelectorAll('p.change').forEach(function(node){
38
- var change = node.textContent;
39
- node.textContent = "[" + change + "]";
40
- })
41
// put level before and parentheses around the conformance level marker
42
document.querySelectorAll('p.conformance-level').forEach(function(node){
43
var level = node.textContent;
0 commit comments