timepartwidget.qss 1.1 KB

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