-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Fix: open participation page accessibility issues (Axe) #32
Changes from all commits
e243833
d350855
6498485
40a6349
7893aee
81988d1
ab1330a
bd9c197
c5cfbc4
6f7a5af
ff39e84
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,9 @@ | |
target="_blank" | ||
style=" | ||
font-family: Georgia; | ||
color: rgb(150,150,150); | ||
color: rgb(87,87,87); | ||
font-size: 18px; | ||
letter-spacing: 2px; | ||
margin-inline-end: 5px; | ||
">{{s.privacy}}</a> | ||
" | ||
>{{s.privacy}}</a> | ||
Comment on lines
+12
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: pls revert (will explain later) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,9 @@ | |
{{/ifNotEmbedded}} | ||
|
||
|
||
<span id="header_root"></span> | ||
<header id="header_root"></header> | ||
|
||
<div | ||
<main | ||
class=" | ||
conversationViewRoot | ||
clickDeselectsHull | ||
|
@@ -168,7 +168,7 @@ | |
|
||
{{#unless no_topic}} | ||
{{#ifDefined topic}} | ||
<h2 | ||
<h1 | ||
thomassth marked this conversation as resolved.
Show resolved
Hide resolved
|
||
class="HeadingA" | ||
style=" | ||
margin-bottom: 10px; | ||
|
@@ -189,7 +189,7 @@ | |
left: 6px; | ||
">closed</span> | ||
thomassth marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{{/unless}} | ||
</h2> | ||
</h1> | ||
{{/ifDefined}} | ||
{{/unless}} | ||
|
||
|
@@ -431,13 +431,13 @@ | |
|
||
</span> {{!-- end no_vis toggle wrapper --}} | ||
|
||
|
||
</main> {{! END PARTICIPATION VIEW DIV }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you clarify what's happening here? Was it malformed before, and you're fixing it? This might need an explicity explanation in your upstream PR as well :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm separating No change in content otherwise. |
||
|
||
|
||
{{! ------------ BEGIN FOOTER --------------- }} | ||
{{#unless no_footer}} | ||
|
||
<div style="margin-top: 40px; margin-bottom: 20px;" data-test-footer> | ||
<footer style="margin-top: 40px; margin-bottom: 20px;" data-test-footer> | ||
<a href="https://pol.is" target="_blank" dir="auto"> | ||
{{> logo}} | ||
</a> | ||
|
@@ -450,7 +450,7 @@ | |
{{> linkPrivacy}} | ||
{{> linkTos}} | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
{{!-- <div style="font-size:18px;font-weight:400;color:white;background-color:#03a9f4;display:flex;-webkit-flex-direction:row;-webkit-flex-wrap:nowrap;-webkit-justify-content:space-between;-webkit-align-items:baseline;-webkit-align-content:stretch;-webkit-order:0;-webkit-flex-grow:0;-webkit-flex-shrink:1;-webkit-flex-basis:auto;-webkit-align-self:auto;" data-reactid=".0.0.$=1$=012.0"> | ||
<p style="margin-inline-start:20px;font-size:12px;" data-reactid=".0.0.$=1$=012.0.$=1$/=010">© The Authors. 2016 </p> | ||
|
@@ -466,6 +466,4 @@ | |
</div> --}} | ||
{{/unless}} | ||
{{! END FOOTER}} | ||
{{! ------------ END FOOTER --------------- }} | ||
|
||
</div> {{! END PARTICIPATION VIEW DIV }} | ||
{{! ------------ END FOOTER --------------- }} |
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.
nit: pls revert (will explain later)