timepartwidget.qss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. QWidget
  2. {
  3. border-radius: 0px;
  4. background: #373639;
  5. }
  6. QListWidget
  7. {
  8. /* font-family:"Source Han Sans CN"; */
  9. font-size: 14px;
  10. /* font-weight: 400; */
  11. color: rgba(255,255,255,0.9);
  12. border: none;
  13. border-right: 1px solid rgba(0, 0, 0, 0.06);
  14. background: #747578;
  15. outline: 0px;
  16. }
  17. QListView::item:hover
  18. {
  19. /* background-color: rgb(245,245,245); */
  20. background-color: rgb(227, 238, 255);
  21. /* font-family:"Source Han Sans CN"; */
  22. /* font-size: 14px; */
  23. /* font-weight:400; */
  24. color: "#3A3F63";
  25. }
  26. QListView::item:selected
  27. {
  28. /* background-color: rgb(227, 238, 255); */
  29. background-color: #438EFF;
  30. /* font-family:"Source Han Sans CN"; */
  31. /* font-size: 14px; */
  32. /* font-weight: 500; */
  33. color: rgba(255,255,255,0.9);
  34. outline: none;
  35. }
  36. QScrollBar:vertical
  37. {
  38. border:none;
  39. background-color: #e2e2e2;
  40. width: 4px;
  41. }
  42. QScrollBar::handle:vertical
  43. {
  44. background: #e2e2e2;
  45. border-radius: 2px;
  46. }
  47. QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical
  48. {
  49. background: #ffffff;/*transparent;*/
  50. border: none;
  51. }
  52. QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
  53. {
  54. background: #ffffff;/*transparent;*/
  55. border: none;
  56. }