Skip to content

Commit

Permalink
fix: Update accessibility headings in new register steps
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPalafox committed Dec 5, 2023
1 parent d2711e2 commit eccb70b
Show file tree
Hide file tree
Showing 11 changed files with 41 additions and 27 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div [formGroup]="form">
<h2 class="orc-font-body" i18n="@@register.tipsFeaturesEmail">
<h3 class="orc-font-body" i18n="@@register.tipsFeaturesEmail">
Tips & features email
</h2>
</h3>
<p i18n="@@register.weOccasionallySend">
We occasionally send out an email with information on new features and tips
for getting the best out of your ORCID record.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div [formGroup]="form">
<h2 i18n="@@register.yourPasswords" class="orc-font-body no-top-margin">
<h3 i18n="@@register.yourPasswords" class="orc-font-body no-top-margin">
Your password
</h2>
</h3>
<div class="input-container">
<mat-label
id="password-label"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<ng-container [formGroup]="form">
<h2 i18n="@@register.yourNames" class="orc-font-body margin-top-12">
<h3 i18n="@@register.yourNames" class="orc-font-body margin-top-12">
Your names
</h2>
</h3>

<div class="input-container">
<mat-label
Expand Down Expand Up @@ -82,9 +82,9 @@ <h2 i18n="@@register.yourNames" class="orc-font-body margin-top-12">

<!-- EMAIL -->

<h2 i18n="@@register.yourEmailAddresses" class="orc-font-body margin-top-12">
<h3 i18n="@@register.yourEmailAddresses" class="orc-font-body margin-top-12">
Your email addresses
</h2>
</h3>
<ng-container formGroupName="emails">
<div class="input-container">
<mat-label
Expand Down Expand Up @@ -324,7 +324,7 @@ <h3 class="orc-font-body" i18n="@@register.addAnotherEmailToSecure">
<div>
<ng-container i18n="@@register.weRecommendAdding"
>We recommend adding a </ng-container
><strong i18n="@@register.personalEmail">personal email</strong>
>&nbsp;<strong i18n="@@register.personalEmail">personal email</strong>&nbsp;
<ng-container i18n="@@register.asBackupSoYouAlways">
as backup so you always have access to your ORCID account if you
change jobs or roles.</ng-container
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h2 class="orc-font-body" i18n="@@register.termsOfUse">Terms of Use</h2>
<h3 class="orc-font-body" i18n="@@register.termsOfUse">Terms of Use</h3>
<mat-error
*ngIf="
termsOfUseWasTouched &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@
name, and more. You control this content and who can see it.
</ng-container>
</p>
<h3
class="orc-font-body mat-subheading-2"
i18n="@@register.visibilityLegend"
>
Visibility settings
</h3>
<fieldset>
<legend
class="orc-font-body mat-subheading-2"
i18n="@@register.visibilityLegend"
>
Visibility settings
</legend>

<p i18n="@@register.visibilityDescription3">
By default, what visibility should be given to new items added to your
ORCID Record?
Expand Down
4 changes: 4 additions & 0 deletions src/app/register2/components/register2.scss-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
$foreground: map-get($theme, foreground);
$background: map-get($theme, background);

h2 {
font-weight: normal;
}

.step-actions {
border-color: mat.get-color-from-palette($background, ui-background-light);
.mat-raised-button.mat-primary {
Expand Down
9 changes: 7 additions & 2 deletions src/app/register2/components/register2.style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,18 @@ a {
margin-top: 0;
}

h2.margin-top-12,
h2 {
margin-block-start: 0;
margin-block-end: 0;
}

h3.margin-top-12,
.step-actions.margin-top-12,
.margin-top-12 {
margin-top: 12px;
}

h2,
h3,
legend {
margin-top: 32px;
margin-bottom: 14px;
Expand Down
7 changes: 5 additions & 2 deletions src/app/register2/components/step-a/step-a.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ <h1 class="orc-font-heading-small" i18n="@@register.create">
Thank you for reactivating your ORCID iD.
</ng-container>
</mat-card-title>
<mat-card-subtitle role="heading" aria-level="2" i18n="@@register.step1.2"
>Step 1 of 4 - Names and emails</mat-card-subtitle
<mat-card-subtitle role="heading" aria-level="2">
<h2 class="orc-font-body-small" i18n="@@register.step1.2">
Step 1 of 4 - Names and emails
</h2>
</mat-card-subtitle
>
</mat-card-header>

Expand Down
5 changes: 3 additions & 2 deletions src/app/register2/components/step-b/step-b.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ <h1 class="orc-font-heading-small" i18n="@@register.create">
Thank you for reactivating your ORCID iD.
</ng-container>
</mat-card-title>
<mat-card-subtitle role="heading" aria-level="2" i18n="@@register.step2.2"
>Step 2 of 4 - Password</mat-card-subtitle
<mat-card-subtitle role="heading" aria-level="2">
<h2 class="orc-font-body-small" i18n="@@register.step2.2">Step 2 of 4 - Password</h2>
</mat-card-subtitle
>
</mat-card-header>

Expand Down
5 changes: 3 additions & 2 deletions src/app/register2/components/step-c-t/step-c.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ <h1 class="orc-font-heading-small" i18n="@@register.create">
Thank you for reactivating your ORCID iD.
</ng-container>
</mat-card-title>
<mat-card-subtitle role="heading" aria-level="2" i18n="@@register.step2.3"
>Step 3 of 4 - Visibility</mat-card-subtitle
<mat-card-subtitle role="heading" aria-level="2">
<h2 class="orc-font-body-small" i18n="@@register.step2.3">Step 3 of 4 - Visibility</h2>
</mat-card-subtitle
>
</mat-card-header>

Expand Down
5 changes: 3 additions & 2 deletions src/app/register2/components/step-d/step-d.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ <h1 class="orc-font-heading-small">Create your ORCID iD</h1>
Thank you for reactivating your ORCID iD.
</ng-container>
</mat-card-title>
<mat-card-subtitle role="heading" aria-level="2" i18n="@@register.step2.3"
>Step 4 of 4 - Terms and conditions</mat-card-subtitle
<mat-card-subtitle role="heading" aria-level="2">
<h2 class="orc-font-body-small" i18n="@@register.step2.3">Step 4 of 4 - Terms and conditions</h2>
</mat-card-subtitle
>
</mat-card-header>

Expand Down

0 comments on commit eccb70b

Please sign in to comment.