Skip to content
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

[Outreachy Task Submission] Background and foreground colors do not have a sufficient contrast ratio on Post card #914

Closed
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
padding: 0 8px;
margin-bottom: 4px;
position: relative;
color: var(--color-neutral-80);

&:not(:first-child) {
&:before {
Expand All @@ -90,9 +91,10 @@
display: block;
padding: 2px 4px;
border-radius: 4px;
color: var(--color-neutral-80);

&--published {
color: var(--color-neutral-70);
color: var(--color-neutral-100);
background-color: var(--color-neutral-10);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h1>{{ (hxlEnabled ? 'data_export.title_hxl' : 'data_export.title') | translate
<mat-tab-group dynamicHeight disableRipple disablePagination animationDuration="0ms">
<mat-tab [label]="'data_export.export' | translate" [data-qa]="'tab-export'">
<ng-container *ngIf="hxlEnabled && !hxlApiKey">
<div class="alert">
<div class="alert" role="alert">
<p>{{ 'data_export.hxl_apikey_alert_1' | translate }}</p>
<p>
{{ 'data_export.hxl_apikey_alert_2' | translate }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ <h2>
</mat-option>
</mat-select>
</mat-form-field>
<div class="alert error" *ngIf="showLangError">
<div class="alert error" role="alert" *ngIf="showLangError">
<mat-icon svgIcon="warning"></mat-icon>
<p translate="translations.error_translation_exists"></p>
</div>
Expand Down
1 change: 1 addition & 0 deletions xregexp.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare module 'xregexp';