aicomparewidget.qss 2.8 KB

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