Skip to content

Commit 4e8d1bd

Browse files
authored
[HUD][dark-mode]: Update JobLinks buttons to use theme variables for dark mode visibility (#6503)
Replaced hardcoded colors with CSS variables in JobLinks.module.css to ensure buttons are properly visible in dark mode. This improves contrast and readability of 'Mark unstable job' and related buttons. Fixes #6500 Original <img width="1134" alt="image" src="https://github.com/user-attachments/assets/1a9517b3-688e-48dd-a0bd-cd288dbba1ef" /> New <img width="1138" alt="image" src="https://github.com/user-attachments/assets/a6ba1fd6-9a7b-48ff-96c6-07c520f7460d" />
1 parent 1477d59 commit 4e8d1bd

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
.disableTestButton {
2-
background-color: #ffc107;
3-
border-color: #ffc107;
2+
background-color: var(--warning-button-bg);
3+
border-color: var(--warning-button-border);
4+
color: var(--warning-button-text);
45
}
56

67
.closedDisableIssueButton {
7-
background-color: #17a2b8;
8-
border-color: #17a2b8;
9-
color: white;
8+
background-color: var(--info-button-bg);
9+
border-color: var(--info-button-border);
10+
color: var(--info-button-text);
1011
}

0 commit comments

Comments
 (0)