From 5d50ba19e44f95ee1e58edc5d247e29976869033 Mon Sep 17 00:00:00 2001 From: Jonas Hiller Date: Fri, 27 Oct 2017 15:36:29 +0200 Subject: [PATCH 1/5] Issue #91325: downgraded the HTML_CodeSniffer version --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index ab15198..bf3a16a 100644 --- a/package.json +++ b/package.json @@ -20,8 +20,7 @@ "homepage": "https://github.com/liip/TheA11yMachine#readme", "main": "./lib/a11ym.js", "dependencies": { - "HTML_CodeSniffer": "https://github.com/squizlabs/HTML_CodeSniffer#master", - "async": "^2.1.4", + "HTML_CodeSniffer": "git+https://github.com/squizlabs/HTML_CodeSniffer.git#d209ce54876657858a8a01528ad812cd234f37f0", "async": "^2.1.4", "chalk": "^1.1.3", "commander": "^2.9.0", "crypto": "0.0.3", From 202a39a1df7745698a167318afcd1cc5c21f3064 Mon Sep 17 00:00:00 2001 From: Jonas Hiller Date: Wed, 24 Jan 2018 12:02:27 +0100 Subject: [PATCH 2/5] Issue #92960: changed font type --- view/common.css | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/view/common.css b/view/common.css index 17a65e4..a98da31 100644 --- a/view/common.css +++ b/view/common.css @@ -1,19 +1,12 @@ -@font-face { - font-family: Source Sans Pro; - font-style: normal; - font-weight: 200; - src: local(Source Sans Pro ExtraLight), - local(SourceSansPro-ExtraLight), - url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGIAPdqzPmKFFIYQ-46z3JxY.woff2) format('woff2'); -} - * { margin: 0; padding: 0; } body { - font: .9em/1.2em Source Sans Pro; + font-style: normal; + font-weight: 200; + font-size: .9em/1.2em, Arial, Verdana, Helvetica, sans-serif; color: rgb(43, 6, 1); } From bb311cf3a4ce4ba146db4900f7e6d83339932f75 Mon Sep 17 00:00:00 2001 From: Jonas Hiller Date: Wed, 24 Jan 2018 13:39:02 +0100 Subject: [PATCH 3/5] Issue #92960: fixed font type and resolved merge conflicts --- view/common.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/view/common.css b/view/common.css index a98da31..0bd04cc 100644 --- a/view/common.css +++ b/view/common.css @@ -6,7 +6,9 @@ body { font-style: normal; font-weight: 200; - font-size: .9em/1.2em, Arial, Verdana, Helvetica, sans-serif; + font-size: .9em; + line-height: 1.2em; + font-family: Arial, Verdana, Helvetica, sans-serif; color: rgb(43, 6, 1); } From b0df4264c3434da9d7a59f11f2734a3c71775afb Mon Sep 17 00:00:00 2001 From: Jonas Hiller Date: Tue, 18 Sep 2018 09:16:52 +0200 Subject: [PATCH 4/5] Issue #122: Removed commit change from other pull request --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index bf3a16a..ab15198 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,8 @@ "homepage": "https://github.com/liip/TheA11yMachine#readme", "main": "./lib/a11ym.js", "dependencies": { - "HTML_CodeSniffer": "git+https://github.com/squizlabs/HTML_CodeSniffer.git#d209ce54876657858a8a01528ad812cd234f37f0", "async": "^2.1.4", + "HTML_CodeSniffer": "https://github.com/squizlabs/HTML_CodeSniffer#master", + "async": "^2.1.4", "chalk": "^1.1.3", "commander": "^2.9.0", "crypto": "0.0.3", From 0453cf6ea87e3dd3b1a0e0b6ee5ad6a610cf5aff Mon Sep 17 00:00:00 2001 From: Jonas Hiller Date: Tue, 18 Sep 2018 09:33:51 +0200 Subject: [PATCH 5/5] Issue #122: added the old webfont and added the fonts Arial, Verdana and Helvetica as fallback --- view/common.css | 81 ++++++++++++++++++++++++++----------------------- 1 file changed, 43 insertions(+), 38 deletions(-) diff --git a/view/common.css b/view/common.css index 0bd04cc..909e8cd 100644 --- a/view/common.css +++ b/view/common.css @@ -1,14 +1,19 @@ +@font-face { + font-family: Source Sans Pro; + font-style: normal; + font-weight: 200; + src: local(Source Sans Pro ExtraLight), + local(SourceSansPro-ExtraLight), + url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGIAPdqzPmKFFIYQ-46z3JxY.woff2) format('woff2'); +} + * { margin: 0; padding: 0; } body { - font-style: normal; - font-weight: 200; - font-size: .9em; - line-height: 1.2em; - font-family: Arial, Verdana, Helvetica, sans-serif; + font: .9em/1.2em Source Sans Pro, Arial, Verdana, Helvetica, sans-serif; color: rgb(43, 6, 1); } @@ -37,9 +42,9 @@ h2 { background-color: rgba(244, 96, 37, .1); } - [data-result-level="error"] h2 { - color: rgb(244, 96, 37); - } +[data-result-level="error"] h2 { + color: rgb(244, 96, 37); +} [data-result-level="warning"] { fill: rgb(254, 178, 54); @@ -47,9 +52,9 @@ h2 { background-color: rgba(254, 178, 54, .1); } - [data-result-level="warning"] h2 { - color: rgb(254, 178, 54); - } +[data-result-level="warning"] h2 { + color: rgb(254, 178, 54); +} [data-result-level="notice"] { fill: rgb(10, 172, 207); @@ -57,9 +62,9 @@ h2 { background-color: rgba(10, 172, 207, .1); } - [data-result-level="notice"] h2 { - color: rgb(10, 172, 207); - } +[data-result-level="notice"] h2 { + color: rgb(10, 172, 207); +} text[data-result-level], [data-result-level] text { @@ -128,27 +133,27 @@ text[data-result-level], transition: max-height .5s ease-in-out; } - #controls > .all-notes:hover { - max-height: 1000px; - } - - #controls > .all-notes > p { - cursor: pointer; - text-align: right; - text-decoration: underline; - margin-bottom: .7em; - } - - #controls > .all-notes > ul { - list-style: none; - -moz-column-width: 3.5em; - -moz-column-gap: 2.5em; - -webkit-column-width: 3.5em; - -webkit-column-gap: 2.5em; - column-width: 3.5em; - column-gap: 2.5em; - } - - #controls > .all-notes > ul > li > small { - float: right; - } +#controls > .all-notes:hover { + max-height: 1000px; +} + +#controls > .all-notes > p { + cursor: pointer; + text-align: right; + text-decoration: underline; + margin-bottom: .7em; +} + +#controls > .all-notes > ul { + list-style: none; + -moz-column-width: 3.5em; + -moz-column-gap: 2.5em; + -webkit-column-width: 3.5em; + -webkit-column-gap: 2.5em; + column-width: 3.5em; + column-gap: 2.5em; +} + +#controls > .all-notes > ul > li > small { + float: right; +}