noisemonitorparamwidget.qss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. QLineEdit:enabled[Warn=true]
  31. {
  32. border: 1px solid #D21F21;
  33. }
  34. QLineEdit:!enabled
  35. {
  36. background: #F5F5F5;
  37. color:rgba(58,63,99,0.65);
  38. }
  39. /* ==========================================================
  40. * QPushButton
  41. * ========================================================== */
  42. QPushButton
  43. {
  44. font-weight: 500;
  45. font-size: 14px;
  46. text-align: center;
  47. }
  48. /* QPushButton#pBtn_close
  49. {
  50. background: transparent;
  51. border-radius: 4px;
  52. qproperty-icon: url(:/ICON/ICON/Close_Light.png);
  53. qproperty-iconSize: 20px 20px;
  54. }
  55. QPushButton#pBtn_close[Hover = true]
  56. {
  57. background: transparent;
  58. border-radius: 4px;
  59. qproperty-icon: url(:/ICON/ICON/Close_pass.png);
  60. qproperty-iconSize: 20px 20px;
  61. border: 1px solid #4458FE;
  62. } */
  63. /********* 普通椭圆按钮三种状态效果 *********/
  64. /* QPushButton#pBtn_cancel, #pBtn_saveTotemplate
  65. {
  66. background: transparent;
  67. color: #3A3F63;
  68. border: 1px solid #E6E9F4;
  69. border-radius: 16px;
  70. }
  71. QPushButton#pBtn_cancel:hover, #pBtn_saveTotemplate:hover
  72. {
  73. background: transparent;
  74. color: #4458FE;
  75. border: 1px solid #4458FE;
  76. border-radius: 16px;
  77. } */
  78. /********* 带有底色椭圆按钮三种状态效果 *********/
  79. /* QPushButton#pBtn_ok
  80. {
  81. color:white;
  82. background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:1 #4F8AFF,stop:0 #4B5EFF);
  83. border-radius: 16px;
  84. }
  85. QPushButton#pBtn_ok:hover
  86. {
  87. color:white;
  88. background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:0 #5D73FF,stop:1 #6092FF);
  89. border-radius: 16px;
  90. } */
  91. /********* 普通方框按钮三种状态效果 *********/
  92. QPushButton#pBtn_restoreDefault
  93. {
  94. background: transparent;
  95. color: #3A3F63;
  96. border: 1px solid #E6E9F4;
  97. border-radius: 4px;
  98. }
  99. QPushButton#pBtn_restoreDefault:hover
  100. {
  101. background: transparent;
  102. color: #4458FE;
  103. border: 1px solid #4458FE;
  104. border-radius: 4px;
  105. }
  106. /********* 带有底色方框按钮三种状态效果 *********/
  107. /* QPushButton#pBtn_addPlan
  108. {
  109. color:white;
  110. background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:1 #4F8AFF,stop:0 #4B5EFF);
  111. border-radius: 4px;
  112. }
  113. QPushButton#pBtn_addPlan:hover
  114. {
  115. color:white;
  116. background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:0 #5D73FF,stop:1 #6092FF);
  117. border-radius: 4px;
  118. } */