Gtk3: background color of gtkcombobox popup trough css

Is there a way to change background color of popup list item windows in a GtkComboBox using css?
I try
combobox>window.popup cellview{
color: Blue;
background: Green
}

but the result is in attached img. I want all back space green. Haw can I do? Thanks

immagine

Sorry, I solved. I add to css

combobox>window.popup *{
background: Green;
}

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.