Hi everyone,

I'm working with a couple of QComboBoxes which are needed for e.g. changings in language and units. The stylesheet of each one looks as follows:
Qt Code:
  1. background: qlineargradient(
  2. x1:0, y1:0, x2:0, y2:1,
  3. stop:0 #f9f9f9,
  4. stop: 0.5 #c6c6c6,
  5. stop: 0.6 #dfdfdf,
  6. stop:1 #f9f9f9 );
  7. border-style: solid;
  8. border-width: 1px;
  9. border-color: rgb(0, 93, 168);
  10. border-radius: 30px;
  11. color: rgb(0, 93, 168);
  12. min-width: 170px;
  13. min-height: 60px;
  14. padding-left: 15px;
  15. }
  16. border-radius: 30px;
  17. background:transparent;
  18. }
  19. QComboBox::drop-down {
  20. image: url(:/bwt/downarrow.png);
  21. subcontrol-position: center right;
  22. margin-right: 10px;
  23. }
  24. padding: 10px 10px 10px 10px;
  25. }
  26. color: rgb(0, 93, 168);
  27. background: transparent;
  28. }
  29. background: qradialgradient(
  30. cx: 0.5, cy: -1.6, fx: 0.5, fy: 0,
  31. radius: 2,
  32. stop: 0 #C4C4C4,
  33. stop: 1 #DBDBDB );
  34. border-style: solid;
  35. border-width: 1px;
  36. border-color: rgb(0, 93, 168);
  37. border-radius: 20px;
  38. }
To copy to clipboard, switch view to plain text mode 

Since I'm not able to upload pictures directly to this post here's an external link to what I get using the stylesheet from above:
https://postimg.org/image/55c1hrj73/

As you can see there's still a box with a white background behind the dropdown menu which I'd like to get rid of. Is it possible to keep the rounded edges while the white box behind it disappears using stylesheet? If not how do I solve this issue?

Any help is appreciated!

Thanks,
Micha