From acbd8599bb7df8f0f6fdce9c0666a9dae80758f1 Mon Sep 17 00:00:00 2001 From: mivaylo <132376042+mivaylo@users.noreply.github.com> Date: Thu, 15 Feb 2024 10:51:01 +0200 Subject: [PATCH] fix(accordion): use disabled color for header description (#1236) ## PR Checklist Please check if your PR fulfills the following requirements: - [ ] Tests for the changes have been added (for bug fixes / features) - [ ] Docs have been added / updated (for bug fixes / features) - [ ] If applicable, have a visual design approval ## PR Type What kind of change does this PR introduce? - [x] Bugfix - [ ] Feature - [ ] Code style update (formatting, local variables) - [ ] Refactoring (no functional changes, no api changes) - [ ] Build related changes - [ ] CI related changes - [ ] Documentation content changes - [ ] Other... Please describe: ## What is the current behavior? Issue Number: CDE-1658 ## What is the new behavior? ## Does this PR introduce a breaking change? - [ ] Yes - [x] No ## Other information Figma spec is not yet updated to have a definition for this color, but we have the online chat confirmation by the design team that this is a required change --- projects/angular/src/accordion/_accordion.clarity.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/angular/src/accordion/_accordion.clarity.scss b/projects/angular/src/accordion/_accordion.clarity.scss index 486bf8745a..033dcb728b 100644 --- a/projects/angular/src/accordion/_accordion.clarity.scss +++ b/projects/angular/src/accordion/_accordion.clarity.scss @@ -94,7 +94,8 @@ cursor: not-allowed; .clr-accordion-status, - .clr-accordion-title { + .clr-accordion-title, + .clr-accordion-description { color: accordion-variables.$clr-accordion-panel-disabled-color; } }