dialog.qss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. QDialog {
  2. border: 1px solid rgb(144, 144, 142);
  3. background-color: white;
  4. }
  5. #buttonGroup {
  6. background-color: rgb(243, 243, 243);
  7. border-top: 1px solid rgb(229, 229, 229);
  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(144, 144, 142);
  18. border-radius: 10px;
  19. background-color: white;
  20. }
  21. QLabel {
  22. color: black;
  23. background-color: transparent;
  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(243, 243, 243);
  39. }
  40. #cancelButton {
  41. color: black;
  42. background: rgb(251, 251, 251);
  43. border: 1px solid rgb(229, 229, 229);
  44. border-bottom: 1px solid rgb(204, 204, 204);
  45. border-radius: 5px;
  46. font: 14px 'Segoe UI', 'Microsoft YaHei';
  47. padding: 5px 9px 6px 9px;
  48. }
  49. #cancelButton:hover {
  50. background: rgb(246, 246, 246);
  51. }
  52. #cancelButton:pressed {
  53. color: rgba(0, 0, 0, 0.63);
  54. background: rgb(245, 245, 245);
  55. border-bottom: 1px solid rgb(229, 229, 229);
  56. }
  57. #cancelButton:disabled {
  58. color: rgba(0, 0, 0, 0.63);
  59. background: rgb(252, 252, 252);
  60. border: 1px solid rgb(223, 223, 223);
  61. }