message_dialog.qss 770 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. QWidget {
  2. background-color: rgb(23, 23, 23);
  3. border: 1px solid rgb(55, 55, 55);
  4. }
  5. QWidget#windowMask {
  6. background-color: rgba(0, 0, 0, 0.6);
  7. border: none;
  8. }
  9. QLabel {
  10. background-color: transparent;
  11. color: white;
  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(51, 51, 51);
  23. font: 15px 'Segoe UI', 'Microsoft YaHei';
  24. border: transparent;
  25. color: white;
  26. }
  27. QPushButton:pressed:hover {
  28. background-color: rgb(102, 102, 102);
  29. }
  30. QPushButton:hover {
  31. background-color: rgb(35, 35, 35);
  32. }
  33. QPushButton:disabled {
  34. background-color: rgb(51, 51, 51);
  35. color: rgb(133, 133, 133);
  36. }