Conversation
|
✅ Deploy Preview for red-hat-design-system ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Size Change: +131 B (+0.05%) Total Size: 257 kB
ℹ️ View Unchanged
|
| /* doesn't work */ | ||
| --pf-c-select__menu-item--hover--BackgroundColor: var(--rh-color-surface-lighter); | ||
|
|
||
| /* doesn't work */ | ||
| --pf-c-select__menu-item--focus--BackgroundColor: var(--rh-color-surface-lighter); | ||
| } | ||
|
|
There was a problem hiding this comment.
if we update to @patternfly/elements@4.2.0 we can do this nasty hack:
pf-option {
--rh-color-gray-20:
light-dark(
var(--rh-color-surface-lighter),
var(--rh-color-surface-dark)
) !important;
--_pf-option-selected-background-color:
light-dark(
var(--rh-color-surface-lighter),
var(--rh-color-surface-dark)
) !important;
--_svg-color: var(--rh-color-interactive-primary-default);
}
}There was a problem hiding this comment.
also there is a rouge --rh-color-gray-20 in PFE that shouldn't be there 🙃
There was a problem hiding this comment.
@dali327519294 can you continue this PR, instead of patternfly/patternfly-elements#2952?
What I did
Testing Instructions
Notes to Reviewers
pf-select's css is broken, and doesn't actually support theming
Closes #2681