noisewidget.qss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. QWidget#widget
  2. {
  3. border-bottom: 1px solid #E9E9E9;
  4. }
  5. QLabel
  6. {
  7. font-weight: 400;
  8. font-size: 14px;
  9. color: #3A3F63;
  10. }
  11. QLabel#label_tip
  12. {
  13. font-weight: 400;
  14. font-size: 14px;
  15. color: rgba(58,63,99,0.8);
  16. line-height: 21px;
  17. text-align: left;
  18. font-style: normal;
  19. }
  20. QLineEdit
  21. {
  22. background: #FFFFFF;
  23. border-radius: 4px;
  24. border: 1px solid #E6E9F4;
  25. padding-left: 12px;
  26. font-weight: 400;
  27. font-size: 14px;
  28. color: #3A3F63;
  29. }
  30. QLineEdit:hover,QLineEdit:focus
  31. {
  32. border: 1px solid #4458FE;
  33. }
  34. QLineEdit:enabled[Warn=true]
  35. {
  36. border: 1px solid #D21F21;
  37. }
  38. QLineEdit:!enabled
  39. {
  40. background: #F5F5F5;
  41. color:rgba(58,63,99,0.65);
  42. }
  43. QCheckBox
  44. {
  45. font-weight: 400;
  46. font-size: 14px;
  47. color: #3A3F63;
  48. }
  49. QCheckBox::indicator
  50. {
  51. width: 16px;
  52. height: 16px;
  53. }
  54. QCheckBox::indicator:unchecked
  55. {
  56. image: url(:/unchecked.png);
  57. }
  58. QCheckBox::indicator:checked
  59. {
  60. image: url(:/checked.png);
  61. }
  62. QPushButton
  63. {
  64. background: #FFFFFF;
  65. border-radius: 4px;
  66. border: 1px solid #E6E9F4;
  67. font-weight: 500;
  68. font-size: 14px;
  69. color: #3A3F63;
  70. }
  71. QPushButton:hover
  72. {
  73. border: 1px solid #4458FE;
  74. color: #4458FE;
  75. }
  76. /* ==========================================================
  77. * QCheckBox
  78. * ========================================================== */
  79. QCheckBox
  80. {
  81. font-weight: 400;
  82. font-size: 14px;
  83. color: #3A3F63;
  84. }
  85. QCheckBox::indicator
  86. {
  87. width: 16px;
  88. height: 16px;
  89. }
  90. QCheckBox::indicator:unchecked
  91. {
  92. image: url(:/icon/unchecked.png);
  93. }
  94. QCheckBox::indicator:checked
  95. {
  96. image: url(:/icon/checked.png);
  97. }