From 04be580897d84c421e53eff41dfa2cc6191d249d Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 27 Oct 2022 21:58:12 -0400 Subject: [PATCH] LP#1966342: (follow-up) adjust for color contrast The default Bootstrap text-light color on a bg-info background fails the WCAG color contrast ratio; letting the text default to black meets level AA. Signed-off-by: Galen Charlton --- Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html b/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html index 13eec62a5e..3e386b7be9 100644 --- a/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html +++ b/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html @@ -150,7 +150,7 @@ *ngFor="let copyCount of getHoldingsSummaries(); let copyIdx = index" [ngClass]="{ 'text-dark bg-warning' : copyCount.count == 0 && (copyCount.transcendant == 0 || !copyCount.transcendant), - 'text-light bg-info' : copyCount.count == 0 + 'bg-info' : copyCount.count == 0 }">
-- 2.11.0