noisewidget.qss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. QCheckBox
  35. {
  36. font-weight: 400;
  37. font-size: 14px;
  38. color: #3A3F63;
  39. }
  40. QCheckBox::indicator
  41. {
  42. width: 16px;
  43. height: 16px;
  44. }
  45. QCheckBox::indicator:unchecked
  46. {
  47. image: url(:/unchecked.png);
  48. }
  49. QCheckBox::indicator:checked
  50. {
  51. image: url(:/checked.png);
  52. }
  53. QPushButton
  54. {
  55. background: #FFFFFF;
  56. border-radius: 4px;
  57. border: 1px solid #E6E9F4;
  58. font-weight: 500;
  59. font-size: 14px;
  60. color: #3A3F63;
  61. }
  62. QPushButton:hover
  63. {
  64. border: 1px solid #4458FE;
  65. color: #4458FE;
  66. }
  67. /* ==========================================================
  68. * QCheckBox
  69. * ========================================================== */
  70. QCheckBox
  71. {
  72. font-weight: 400;
  73. font-size: 14px;
  74. color: #3A3F63;
  75. }
  76. QCheckBox::indicator
  77. {
  78. width: 16px;
  79. height: 16px;
  80. }
  81. QCheckBox::indicator:unchecked
  82. {
  83. image: url(:/icon/unchecked.png);
  84. }
  85. QCheckBox::indicator:checked
  86. {
  87. image: url(:/icon/checked.png);
  88. }