Is it possible to set the color of the dropdown menu for gr-select?
I think not, as:
gr-select ->
gr-dropdown
and gr-dropdown in its css :host selector has:
--panel-background-color: var(--gr-color-white);
so even setting --panel-background-color from the outside of the gr-select component will have no impact on the underlying dropdown. Notice the white bars in the below:
... even though the following variables are set at the top level:
Hello,
Is it possible to set the color of the dropdown menu for
gr-select
?I think not, as:
and
gr-dropdown
in its css:host
selector has:so even setting
--panel-background-color
from the outside of thegr-select
component will have no impact on the underlying dropdown. Notice the white bars in the below:... even though the following variables are set at the top level:
(
--primary-background-color
,--secondary-background-color
and--primary-text-color
are variables from my code that are dark in color in this case).