dialog.qss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. QDialog {
  2. border: 1px solid rgb(58, 58, 58);
  3. background-color: rgb(43, 43, 43);
  4. }
  5. #buttonGroup {
  6. background-color: rgb(32, 32, 32);
  7. border-top: 1px solid rgb(29, 29, 29);
  8. border-left: none;
  9. border-right: none;
  10. border-bottom: none;
  11. }
  12. MessageBox #buttonGroup {
  13. border-bottom-left-radius: 8px;
  14. border-bottom-right-radius: 8px;
  15. }
  16. #centerWidget {
  17. border: 1px solid rgb(58, 58, 58);
  18. border-radius: 10px;
  19. background-color: rgb(43, 43, 43);
  20. }
  21. QLabel {
  22. background-color: transparent;
  23. color: white;
  24. border: none;
  25. }
  26. QLabel#titleLabel {
  27. font: 20px 'Segoe UI', 'Microsoft YaHei';
  28. padding: 0;
  29. }
  30. #contentLabel {
  31. padding: 0;
  32. font: 14px 'Segoe UI', 'Microsoft YaHei';
  33. border: none;
  34. }
  35. QLabel#windowTitleLabel {
  36. font: 12px 'Segoe UI', 'Microsoft YaHei';
  37. padding: 6px 6px;
  38. background-color: rgb(32, 32, 32);
  39. }
  40. #cancelButton {
  41. background: rgb(45, 45, 45);
  42. border: 1px solid rgb(48, 48, 48);
  43. border-top: 1px solid rgb(53, 53, 53);
  44. border-radius: 5px;
  45. color: white;
  46. font: 14px 'Segoe UI', 'Microsoft YaHei';
  47. padding: 5px 9px 6px 9px;
  48. }
  49. #cancelButton:hover {
  50. background: rgb(50, 50, 50);
  51. }
  52. #cancelButton:pressed {
  53. color: rgba(255, 255, 255, 0.63);
  54. background: rgb(39, 39, 39);
  55. border: 1px solid rgb(48, 48, 48);
  56. }
  57. #cancelButton:disabled {
  58. color: rgba(255, 255, 255, 0.63);
  59. background: rgb(59, 59, 59);
  60. border: 1px solid rgb(80, 80, 80);
  61. }