I am currently using the MetroBlack theme. I have a pop-up window that is all black, and it has a combo box inside of it. But the box is all white which does not look correct to me.
<
select
id
=
"liveServer"
class
=
"comboStyle"
>
<
option
>ws://localhost:61623/stomp</
option
>
<
option
>ws://vwdhad:61623/stomp</
option
>
</
select
>
If I set the background color to pure black, to match the rest, then I loose the (v) down-arrow icon (it is also black) so I have resorted to this CSS, which makes is a dark grey backgrond and white text. But something tells me that the theme should be doing this automatically. What am I missing?
.comboStyle {
font-family: Arial, sans-serif;
font-size: 16px;
padding: 4px 7px;
color: #ffffff;
background-color: #404040;
}