Skip to content

Commit

Permalink
Fix the color of the buttons in a dialog in HCM
Browse files Browse the repository at this point in the history
  • Loading branch information
calixteman committed Aug 2, 2024
1 parent 08821a3 commit f32d19d
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 f32d19d

Please sign in to comment.