noisemonitorparamwidget.qss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /* ==========================================================
  2. * QLabel
  3. * ========================================================== */
  4. QLabel#label_noiseParam, #label_threshold, #label_computeParam
  5. {
  6. font-weight: 500;
  7. font-size: 16px;
  8. color: #3A3F63;
  9. line-height: 24px;
  10. text-align: left;
  11. font-style: normal;
  12. }
  13. /* ==========================================================
  14. * QLineEdit
  15. * ========================================================== */
  16. QLineEdit
  17. {
  18. background: #FFFFFF;
  19. border-radius: 4px;
  20. border: 1px solid #E6E9F4;
  21. padding-left: 12px;
  22. font-weight: 400;
  23. font-size: 14px;
  24. color: #3A3F63;
  25. }
  26. QLineEdit:hover,QLineEdit:focus
  27. {
  28. border: 1px solid #4458FE;
  29. }
  30. /* ==========================================================
  31. * QPushButton
  32. * ========================================================== */
  33. QPushButton
  34. {
  35. font-weight: 500;
  36. font-size: 14px;
  37. text-align: center;
  38. }
  39. /* QPushButton#pBtn_close
  40. {
  41. background: transparent;
  42. border-radius: 4px;
  43. qproperty-icon: url(:/ICON/ICON/Close_Light.png);
  44. qproperty-iconSize: 20px 20px;
  45. }
  46. QPushButton#pBtn_close[Hover = true]
  47. {
  48. background: transparent;
  49. border-radius: 4px;
  50. qproperty-icon: url(:/ICON/ICON/Close_pass.png);
  51. qproperty-iconSize: 20px 20px;
  52. border: 1px solid #4458FE;
  53. } */
  54. /********* 普通椭圆按钮三种状态效果 *********/
  55. /* QPushButton#pBtn_cancel, #pBtn_saveTotemplate
  56. {
  57. background: transparent;
  58. color: #3A3F63;
  59. border: 1px solid #E6E9F4;
  60. border-radius: 16px;
  61. }
  62. QPushButton#pBtn_cancel:hover, #pBtn_saveTotemplate:hover
  63. {
  64. background: transparent;
  65. color: #4458FE;
  66. border: 1px solid #4458FE;
  67. border-radius: 16px;
  68. } */
  69. /********* 带有底色椭圆按钮三种状态效果 *********/
  70. /* QPushButton#pBtn_ok
  71. {
  72. color:white;
  73. background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:1 #4F8AFF,stop:0 #4B5EFF);
  74. border-radius: 16px;
  75. }
  76. QPushButton#pBtn_ok:hover
  77. {
  78. color:white;
  79. background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:0 #5D73FF,stop:1 #6092FF);
  80. border-radius: 16px;
  81. } */
  82. /********* 普通方框按钮三种状态效果 *********/
  83. QPushButton#pBtn_defaultSetting
  84. {
  85. background: transparent;
  86. color: #3A3F63;
  87. border: 1px solid #E6E9F4;
  88. border-radius: 4px;
  89. }
  90. QPushButton#pBtn_defaultSetting:hover
  91. {
  92. background: transparent;
  93. color: #4458FE;
  94. border: 1px solid #4458FE;
  95. border-radius: 4px;
  96. }
  97. /********* 带有底色方框按钮三种状态效果 *********/
  98. /* QPushButton#pBtn_addPlan
  99. {
  100. color:white;
  101. background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:1 #4F8AFF,stop:0 #4B5EFF);
  102. border-radius: 4px;
  103. }
  104. QPushButton#pBtn_addPlan:hover
  105. {
  106. color:white;
  107. background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:0 #5D73FF,stop:1 #6092FF);
  108. border-radius: 4px;
  109. } */