lhcoaxialswitchsetinfo.qss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. QWidget#widget_bg
  2. {
  3. background: rgba(255,255,255,1);
  4. }
  5. QWidget#widget_border
  6. {
  7. background: transparent;
  8. border-radius: 4px;
  9. border: 1px solid #E6E9F4;
  10. }
  11. QWidget#widget_border:hover
  12. {
  13. background: transparent;
  14. border-radius: 4px;
  15. border: 1px solid #4458FE;
  16. }
  17. QWidget#widget_border:focus
  18. {
  19. background: transparent;
  20. border-radius: 4px;
  21. border: 1px solid #4458FE;
  22. }
  23. QListWidget
  24. {
  25. background: #F9F9F9;
  26. border:1px solid #E6E9F4;
  27. font-size: 14px;
  28. font-weight: 400;
  29. color: #3A3F63;
  30. }
  31. QListWidget::item
  32. {
  33. border:none;
  34. background: #F9F9F9;
  35. font-size: 14px;
  36. font-weight: 400;
  37. color: #3A3F63;
  38. height:30px;
  39. }
  40. QListWidget::item:hover
  41. {
  42. border:none;
  43. background: #EEF2FF;
  44. height:30px;
  45. }
  46. QListWidget::item:selected
  47. {
  48. border:none;
  49. background: #EEF2FF;
  50. height:30px;
  51. }
  52. QLabel
  53. {
  54. font-size: 14px;
  55. font-weight: 400;
  56. color: #3A3F63;
  57. }
  58. QFrame#line
  59. {
  60. color: #E6E9F4;
  61. }
  62. QLineEdit
  63. {
  64. background: #FFFFFF;
  65. border-radius: 4px;
  66. border: 1px solid #E6E9F4;
  67. font-weight: 400;
  68. font-size: 14px;
  69. color: #3A3F63;
  70. padding-left: 12px;
  71. }
  72. QLineEdit:hover
  73. {
  74. border: 1px solid #4458FE;
  75. }
  76. QLineEdit:focus
  77. {
  78. border: 1px solid #4458FE;
  79. }
  80. QLineEdit#lineEdit_wait
  81. {
  82. background: transparent;
  83. border:none;
  84. font-weight: 400;
  85. font-size: 14px;
  86. color: #3A3F63;
  87. padding-left: 12px;
  88. }
  89. QComboBox
  90. {
  91. font-size: 14px;
  92. color: #3A3F63;
  93. line-height: 20px;
  94. background: transparent;
  95. border-radius: 4px;
  96. border: 1px solid #E6E9F4;
  97. padding-left:12px;
  98. }
  99. QComboBox:hover
  100. {
  101. border: 1px solid #4458FE;
  102. }
  103. QComboBox::down-arrow
  104. {
  105. image: url(:/light/dropdown.png);
  106. height:16px;
  107. width:16px;
  108. }
  109. QComboBox::drop-down
  110. {
  111. background: transparent;
  112. padding-right:8px;
  113. }
  114. QComboBox QAbstractItemView
  115. {
  116. font-size: 14px;
  117. background: #F9F9F9;
  118. border: 1px solid #F9F9F9;
  119. border-radius: 4px;
  120. outline:0px;
  121. }
  122. QComboBox QAbstractItemView::item
  123. {
  124. color: #3A3F63;
  125. font-size: 14px;
  126. background: #F9F9F9;
  127. padding-left:12px;
  128. border:none;
  129. height:40px;
  130. }
  131. QComboBox QAbstractItemView::item:hover
  132. {
  133. font-weight: 500;
  134. color: #3A3F63;
  135. background: #EEF2FF;
  136. }
  137. QComboBox QAbstractItemView::item:selected
  138. {
  139. font-weight: 500;
  140. color: #3A3F63;
  141. background: #EEF2FF;
  142. }
  143. QPushButton
  144. {
  145. font-size: 14px;
  146. font-weight: 400;
  147. color: #FFFFFF;
  148. background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 rgba(79, 138, 255, 1), stop:1 rgba(75, 94, 255, 1));
  149. border-radius: 16px;
  150. }
  151. QPushButton:hover
  152. {
  153. font-size: 14px;
  154. font-weight: 500;
  155. color: #FFFFFF;
  156. line-height: 21px;
  157. border: none;
  158. border-radius: 16px;
  159. background: rgba(79, 138, 255, 220);
  160. }
  161. QPushButton:disabled
  162. {
  163. font-size: 14px;
  164. font-weight: 500;
  165. color: rgba(255,255,255,115);
  166. line-height: 21px;
  167. border: none;
  168. border-radius: 16px;
  169. background: qlineargradient(x1:0, y1:0, x2:1, y2:0,stop: 0 rgb(79, 138, 255),stop: 1 rgb(75, 94, 255));
  170. }
  171. QScrollArea
  172. {
  173. background: rgba(255,255,255,1);
  174. }
  175. QWidget#scrollAreaWidgetContents
  176. {
  177. background: rgba(255,255,255,1);
  178. }
  179. QScrollBar:horizontal,QScrollBar:vertical
  180. {
  181. border:none;
  182. background-color: transparent;
  183. margin: 0px 0px 0px 0px;
  184. }
  185. QScrollBar:horizontal
  186. {
  187. padding-left:0px;
  188. height: 4px;
  189. }
  190. QScrollBar:vertical
  191. {
  192. padding-top:0px;
  193. width: 4px;
  194. }
  195. QScrollBar::handle:horizontal,QScrollBar::handle:vertical
  196. {
  197. background: #E2E2E2;
  198. border-radius: 2px;
  199. min-width: 20px;
  200. }
  201. QScrollBar::handle:horizontal
  202. {
  203. min-width: 60px;
  204. }
  205. QScrollBar::handle:vertical
  206. {
  207. min-height: 60px;
  208. }
  209. QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal,
  210. QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical
  211. {
  212. background-color: transparent;
  213. border: none;
  214. }
  215. QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal,
  216. QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
  217. {
  218. background-color: transparent;
  219. background: none;
  220. }