noisewidget.qss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. QLineEdit
  12. {
  13. background: #FFFFFF;
  14. border-radius: 4px;
  15. border: 1px solid #E6E9F4;
  16. padding-left: 12px;
  17. font-weight: 400;
  18. font-size: 14px;
  19. color: #3A3F63;
  20. }
  21. QLineEdit:hover,QLineEdit:focus
  22. {
  23. border: 1px solid #4458FE;
  24. }
  25. QCheckBox
  26. {
  27. font-weight: 400;
  28. font-size: 14px;
  29. color: #3A3F63;
  30. }
  31. QCheckBox::indicator
  32. {
  33. width: 16px;
  34. height: 16px;
  35. }
  36. QCheckBox::indicator:unchecked
  37. {
  38. image: url(:/unchecked.png);
  39. }
  40. QCheckBox::indicator:checked
  41. {
  42. image: url(:/checked.png);
  43. }
  44. QPushButton
  45. {
  46. background: #FFFFFF;
  47. border-radius: 4px;
  48. border: 1px solid #E6E9F4;
  49. font-weight: 500;
  50. font-size: 14px;
  51. color: #3A3F63;
  52. }
  53. QPushButton:hover
  54. {
  55. border: 1px solid #4458FE;
  56. color: #4458FE;
  57. }
  58. /* ==========================================================
  59. * QCheckBox
  60. * ========================================================== */
  61. QCheckBox
  62. {
  63. font-weight: 400;
  64. font-size: 14px;
  65. color: #3A3F63;
  66. }
  67. QCheckBox::indicator
  68. {
  69. width: 16px;
  70. height: 16px;
  71. }
  72. QCheckBox::indicator:unchecked
  73. {
  74. image: url(:/icon/unchecked.png);
  75. }
  76. QCheckBox::indicator:checked
  77. {
  78. image: url(:/icon/checked.png);
  79. }