Hello. I'd like to know what is the way to customize QComboBox pop-up via QSS. Namely I want to remove the corners of the pop-up area, because in my case it is rounded.

This is the code I tried:
Qt Code:
  1. QWidget#myParentWidget QComboBox QAbstractItemView
  2. {
  3. border-radius: 15px;
  4. background-color: red;
  5. }
To copy to clipboard, switch view to plain text mode 

It produces the result like this:
qcombobox.png
Although pop-up is rounded and filled with the proper background color there is still something in the background that I can't remove.

Also I'd like to know if it is possible to apply QSS style to the items of the pop-up area. The following code doesn't work:
Qt Code:
  1. QWidget#myParentWidget QComboBox QAbstractItemView::item
  2. {
  3. border-color: green;
  4. }
To copy to clipboard, switch view to plain text mode