message_dialog.qss 760 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. QWidget {
  2. background-color: white;
  3. border: 1px solid rgb(200, 200, 200);
  4. }
  5. QWidget#windowMask {
  6. background-color: rgba(255, 255, 255, 0.6);
  7. border: none;
  8. }
  9. QLabel {
  10. background-color: transparent;
  11. color: black;
  12. font-family: 'Segoe UI', 'Microsoft YaHei';
  13. border: none;
  14. }
  15. QLabel#titleLabel {
  16. font-size: 18px;
  17. }
  18. QLabel#contentLabel {
  19. font-size: 14px;
  20. }
  21. QPushButton {
  22. background-color: rgb(204, 204, 204);
  23. font: 15px 'Segoe UI', 'Microsoft YaHei';
  24. border: transparent;
  25. }
  26. QPushButton:pressed:hover {
  27. background-color: rgb(153, 153, 153);
  28. }
  29. QPushButton:hover {
  30. background-color: rgb(230, 230, 230);
  31. }
  32. QPushButton:disabled {
  33. background-color: rgb(204, 204, 204);
  34. color: rgb(122, 122, 122);
  35. }