diff --git a/pkg/lib/patternfly/patternfly-5-overrides.scss b/pkg/lib/patternfly/patternfly-5-overrides.scss index 8200d4464551..892fafe3a9f5 100644 --- a/pkg/lib/patternfly/patternfly-5-overrides.scss +++ b/pkg/lib/patternfly/patternfly-5-overrides.scss @@ -407,3 +407,14 @@ select.pf-v5-c-form-control { html:not(.pf-v5-theme-dark) .pf-v5-c-menu-toggle:not(.pf-m-primary) { background-color: var(--pf-v5-global--BackgroundColor--100); } + +/* Give secondary buttons a white/grey background instead of their + default transparent one. This gives them better contrast in + toolbars. +*/ +.pf-v5-c-button.pf-m-secondary:not(.pf-m-disabled) { + background-color: var(--pf-v5-global--BackgroundColor--100); + .pf-v5-theme-dark & { + background-color: var(--pf-v5-global--BackgroundColor--400); + } +}