style: Fix color-bg references (#1386)

Closes HDX-2866

This PR updates references to background colors (color-success and color-danger no longer exist).

The background colors now render:

<img width="211" height="281" alt="Screenshot 2025-11-19 at 1 56 03 PM" src="https://github.com/user-attachments/assets/04102b3a-e03a-40b5-bd20-4bb2dc11edbe" />
<img width="210" height="128" alt="Screenshot 2025-11-19 at 1 56 49 PM" src="https://github.com/user-attachments/assets/4ca09e95-f078-4bad-9790-f6f76afccd55" />
This commit is contained in:
Drew Davis 2025-11-19 14:13:48 -05:00 committed by GitHub
parent f868c3ca61
commit 237a267765
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 3 deletions

View file

@ -0,0 +1,5 @@
---
"@hyperdx/app": patch
---
style: Fix missing AlertHistory colors

View file

@ -32,11 +32,11 @@
}
&.ok {
background-color: var(--color-success);
background-color: var(--color-bg-success);
}
&.alarm {
background-color: var(--color-danger);
background-color: var(--color-bg-danger);
}
}

View file

@ -172,7 +172,7 @@ $button-height: 18px;
}
&.copied {
color: var(--color-success);
color: var(--color-bg-success);
}
}