Skip to content

Commit

Permalink
Merge pull request #18547 from calixteman/fix_hcm_button_colors
Browse files Browse the repository at this point in the history
Fix the color of the buttons in a dialog in HCM
  • Loading branch information
timvandermeij authored Aug 2, 2024
2 parents 08821a3 + f32d19d commit 0d44e71
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions web/dialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@

--button-primary-bg-color: #0060df;
--button-primary-fg-color: #fbfbfe;
--button-primary-border-color: var(--button-primary-bg-color);
--button-primary-hover-bg-color: var(--button-primary-bg-color);
--button-primary-hover-fg-color: var(--button-primary-fg-color);
--button-primary-hover-border-color: var(--button-primary-hover-bg-color);
Expand Down Expand Up @@ -224,9 +225,9 @@
}

&.primaryButton {
color: var(--button-primary-hover-fg-color);
background-color: var(--button-primary-hover-bg-color);
border-color: var(--button-primary-hover-border-color);
color: var(--button-primary-fg-color);
background-color: var(--button-primary-bg-color);
border-color: var(--button-primary-border-color);
opacity: 1;

&:hover {
Expand Down

0 comments on commit 0d44e71

Please sign in to comment.