Skip to content

Commit

Permalink
[JENKINS-71479] Do not use SCSS lighten function directly to avoid in…
Browse files Browse the repository at this point in the history
…valid CSS (#8425)

(cherry picked from commit 620e775)
  • Loading branch information
dwnusbaum authored and krisstern committed Sep 2, 2023
1 parent f02efe6 commit 44f9ffc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions war/src/main/scss/abstracts/theme.scss
Expand Up @@ -131,9 +131,9 @@ $semantics: (
// Button primary
--button-color--primary: var(--background);
--btn-primary-bg: #063f61;
--btn-primary-bg-hover: lighten(#063f61, 7.5%);
--btn-primary-bg-active: lighten(#063f61, 12%);
// Button primary
--btn-primary-bg-hover: #{lighten(#063f61, 7.5%)};
--btn-primary-bg-active: #{lighten(#063f61, 12%)};
// Deprecated - Button primary
--btn-secondary-color: var(--secondary);
--btn-secondary-bg: var(--btn-text-color);
--btn-secondary-border: var(--medium-grey);
Expand Down

0 comments on commit 44f9ffc

Please sign in to comment.