databasewidget.qss 2.6 KB

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