Skip to content

Commit

Permalink
A11y/shibui-256: Updated color values to correct several color contra…
Browse files Browse the repository at this point in the history
…st issues
  • Loading branch information
Jodie Muramoto committed Mar 30, 2018
1 parent d6737d0 commit e4a6bb8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion ui/src/app/edit-provider/container/editor.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="container-fluid p-3" *ngIf="provider$ | async" role="main">
<section class="section" [attr.aria-label]="'Edit metadata source - ' + (provider$ | async).serviceProviderName" tabindex="0">
<div class="section-header bg-info p-2 text-light">
<div class="section-header bg-info p-2 text-white">
<div class="row justify-content-between">
<div class="col-md-12">
<span class="display-6"><i class="fa fa-gears"></i> Edit Metadata Source - {{ (provider$ | async).serviceProviderName }}</span>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/edit-provider/container/wizard.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="container-fluid p-3" role="main">
<section class="section" *ngIf="provider$ | async" tabindex="0" [attr.aria-label]="'Add a new metadata provider wizard form - ' + (currentPage$ | async).label + ' ' + (provider$ | async).serviceProviderName">
<div class="section-header bg-info p-2 text-light">
<div class="section-header bg-info p-2 text-white">
<div class="row justify-content-between">
<div class="col-md-12">
<span class="display-6" role="heading" aria-level="1">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
rows="5"
aria-multiline="true"
role="textbox"></textarea>
<small class="form-text text-muted">
<small class="form-text text-secondary">
<ng-container>
{{ form.get('mdui.description').value ? form.get('mdui.description').value.length : '0' }}
</ng-container>
Expand Down Expand Up @@ -110,7 +110,7 @@
</span>
</div>
<input id="logoWidth" type="number" class="form-control" placeholder="" formControlName="logoWidth" step="1" role="textbox" />
<small class="form-text text-muted" i18n="@@message--must-be-integer">Must be an integer equal to or greater than 0</small>
<small class="form-text text-secondary" i18n="@@message--must-be-integer">Must be an integer equal to or greater than 0</small>
</div>
</div>
<div class="col">
Expand All @@ -128,7 +128,7 @@
</span>
</div>
<input id="logoHeight" type="number" class="form-control" placeholder="" formControlName="logoHeight" step="1" role="textbox" />
<small class="form-text text-muted" i18n="@@message--must-be-integer">Must be an integer equal to or greater than 0</small>
<small class="form-text text-secondary" i18n="@@message--must-be-integer">Must be an integer equal to or greater than 0</small>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="container-fluid p-3" role="main">
<section class="section" aria-label="Add a new metadata source - how are you adding the metadata information?" tabindex="0">
<div class="section-header bg-info p-2 text-light">
<div class="section-header bg-info p-2 text-white">
<div class="row justify-content-between">
<div class="col-md-12">
<span class="display-6" i18n="@@label--add-a-new-metadata-provider">Add a new metadata provider</span>
Expand Down
10 changes: 5 additions & 5 deletions ui/src/theme/_palette.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $gray-300: #dee2e6;
$gray-400: #ced4da;
$gray-500: #adb5bd;
$gray-600: #868e96;
$gray-700: #495057;
$gray-700: #697581;
$gray-800: #343a40;
$gray-900: #212529;
$black: #000;
Expand All @@ -31,10 +31,10 @@ $light-blue: #007db1;
$indigo: #6610f2;
$purple: #6f42c1;
$pink: #e83e8c;
$red: #ef3e33;
$red: #d3190f;
$orange: #fd7e14;
$yellow: #ffc107;
$green: #6db300;
$green: #498500;
$teal: #20c997;
$cyan: #17a2b8;

Expand All @@ -59,7 +59,7 @@ $colors: (

$theme-colors: (
primary: $blue,
secondary: $gray-600,
secondary: $gray-700,
success: $green,
info: $light-blue,
warning: $yellow,
Expand All @@ -69,4 +69,4 @@ $theme-colors: (
);

// Set a specific jump point for requesting color jumps
$theme-color-interval: 8%;
$theme-color-interval: 8%;

0 comments on commit e4a6bb8

Please sign in to comment.