aicomparewidget.qss 2.7 KB

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