timepartwidget.qss 973 B

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