Hi, is there any css stylesheet that would give my Windows GUI a glossy or OSX styled QPushButton?
I've searched on google, but no luck.
This is how my buttons look so far, but hoping to spruce it up a bit. Thanks!


Qt Code:
  1. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  2. stop: 0 #d3dace, stop: 1 #FFFFFF);
  3. border: 2px solid gray;
  4. border-radius: 5px;
  5. margin-top: 1ex;
  6. }
  7.  
  8. QPushButton:hover {
  9. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  10. stop: 0 #d3dace, stop: 1 #a0b5db);
  11. border: 2px solid gray;
  12. border-radius: 5px;
  13. margin-top: 1ex;
  14. }
To copy to clipboard, switch view to plain text mode