warning_dark.qss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. QWidget
  2. {
  3. font-family: 思源黑体M;
  4. text-align: left;
  5. font-style: normal;
  6. }
  7. QWidget#widget
  8. {
  9. background: #2E2D31;
  10. border-radius: 10px;
  11. border: 1px solid #595959;
  12. }
  13. QLabel#label_NC1
  14. {
  15. font-weight: bold;
  16. font-size: 18px;
  17. color: #D2D2D2;
  18. line-height: 27px;
  19. text-align: left;
  20. font-style: normal;
  21. text-transform: uppercase;
  22. }
  23. QWidget#widget_Top
  24. {
  25. background: rgba(108,105,124,0.2);
  26. border-top-left-radius: 10px;
  27. border-top-right-radius: 10px;
  28. }
  29. QLabel#label_Warn
  30. {
  31. font-weight: 400;
  32. font-size: 18px;
  33. color: #D2D2D2;
  34. line-height: 21px;
  35. text-align: left;
  36. font-style: normal;
  37. }
  38. QPushButton#pBtn_close
  39. {
  40. background: transparent;
  41. border: none;
  42. border-image: url(:/image/Resource/image/close_dark/close_default.png);
  43. }
  44. QPushButton#pBtn_close:hover
  45. {
  46. border-image: url(:/image/Resource/image/close_dark/close_pass.png);
  47. }
  48. QPushButton
  49. {
  50. background: #FFFFFF;
  51. border: 1px solid #E6E9F4;
  52. text-align: center;
  53. }
  54. /********* 按钮 *********/
  55. QPushButton#pBtn_ok
  56. {
  57. font-size:14px;
  58. font-weight: 500;
  59. text-align: center;
  60. color: #f3f7ff;
  61. line-height: 24px;
  62. border: 1px solid #000000;
  63. border-radius: 4px;
  64. background: #0058b1;
  65. }
  66. QPushButton#pBtn_ok::hover
  67. {
  68. font-size:14px;
  69. font-weight: 500;
  70. text-align: center;
  71. color: #f3f7ff;
  72. line-height: 24px;
  73. border: 1px solid #000000;
  74. border-radius: 4px;
  75. background: #1a69b8;
  76. }
  77. QPushButton#pBtn_cancel
  78. {
  79. font-size:14px;
  80. font-weight: 500;
  81. text-align: center;
  82. color: #f3f7ff;
  83. line-height: 24px;
  84. border: 1px solid #000000;
  85. border-radius: 4px;
  86. background: #3e3d42;
  87. }
  88. QPushButton#pBtn_cancel::hover
  89. {
  90. font-size:14px;
  91. font-weight: 500;
  92. text-align: center;
  93. color: #f3f7ff;
  94. line-height: 24px;
  95. border: 1px solid #000000;
  96. border-radius: 4px;
  97. background: #605e65;
  98. }