Fix contrast accessibility bugs (#2830)

* Service360 accessibility bugfixes
This commit is contained in:
ReneOv-MSFT 2023-11-27 16:55:24 -08:00 коммит произвёл GitHub
Родитель 8b4958238c
Коммит c9ac291c2b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 21 добавлений и 9 удалений

Просмотреть файл

@ -18,7 +18,7 @@
"border": "#919191",
"editor": "vs",
"text": {
"primary": "#323130",
"primary": "#262524",
"secondary": "#666666"
},
"breadcrumb": {

Просмотреть файл

@ -1,5 +1,7 @@
import { Component, ContentChild, Input, TemplateRef, ViewChild } from "@angular/core";
import "./tabs.scss";
@Component({
selector: "bl-tab-label",
template: "<ng-template><ng-content></ng-content></ng-template>",

Просмотреть файл

@ -0,0 +1,9 @@
@import "app/styles/variables";
mat-tab-group {
&:not(.form-tabs) .mat-tab-label.cdk-keyboard-focused {
border-width: 1px;
border-style: solid;
border-color: $button-basic-text-color !important;
}
}

Просмотреть файл

@ -5,8 +5,8 @@ bl-add-certificate-form {
.certificate-deprecation-warning {
> .warning {
background-color: var(--color-warn-50);
// using the color from var(--color-text-primary)
color: #333333;
// Primary text color was not dark enough to contrast with link color. Deepened it 6 shades.
color: #201f1e;
> .summary-container {
@ -22,7 +22,6 @@ bl-add-certificate-form {
}
.certificate-warning-alternative-link {
// using the color from var(--color-primary-800);
color: #1d54af;
color: var(--color-primary-600);
}
}

Просмотреть файл

@ -27,3 +27,7 @@ bl-job-details {
}
}
}
bl-summary-card > .main-tile > .content-container > .content > .details {
color: $primary-text !important;
}

Просмотреть файл

@ -5,8 +5,7 @@ bl-pool-configuration {
.certificate-deprecation-warning {
> .warning {
background-color: var(--color-warn-50);
// using the color from var(--color-text-primary)
color: #333333;
color: #201f1e;
> .summary-container {
@ -22,7 +21,6 @@ bl-pool-configuration {
}
.certificate-warning-alternative-link {
// using the color from var(--color-primary-800);
color: #1d54af;
color: var(--color-primary-600);
}
}