menu.qss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. QMenu {
  2. background-color: rgb(232, 232, 232);
  3. font: 14px 'Segoe UI', 'Microsoft YaHei';
  4. padding: 4px 0px 4px 0px;
  5. border: 1px solid rgb(200, 200, 200);
  6. }
  7. QMenu::right-arrow {
  8. width: 13px;
  9. height: 13px;
  10. right: 13px;
  11. border-image: url(:/qfluentwidgets/images/menu/ChevronRight_black.svg);
  12. }
  13. QMenu::separator {
  14. height: 1px;
  15. background: rgba(0, 0, 0, 104);
  16. margin-right: 13px;
  17. margin-top: 4px;
  18. margin-bottom: 4px;
  19. margin-left: 10px;
  20. }
  21. QMenu::item {
  22. padding: 6px 10px 6px 10px;
  23. }
  24. QMenu::item:selected {
  25. border-width: 1px;
  26. border-color: rgb(212, 212, 212);
  27. background: rgba(0, 0, 0, 25);
  28. color: black;
  29. }
  30. MenuActionListWidget {
  31. border: 1px solid rgba(0, 0, 0, 0.1);
  32. border-radius: 9px;
  33. background-color: rgb(249, 249, 249);
  34. outline: none;
  35. font: 14px 'Segoe UI', 'Microsoft YaHei';
  36. }
  37. MenuActionListWidget::item {
  38. padding-left: 10px;
  39. padding-right: 10px;
  40. border-radius: 5px;
  41. border: none;
  42. }
  43. MenuActionListWidget::item:disbaled {
  44. padding-left: 10px;
  45. padding-right: 10px;
  46. border-radius: 5px;
  47. border: none;
  48. color: black;
  49. }
  50. MenuActionListWidget::item:hover {
  51. background-color: rgba(0, 0, 0, 9);
  52. }
  53. MenuActionListWidget::item:selected {
  54. background-color: rgba(0, 0, 0, 7);
  55. color: black;
  56. }
  57. MenuActionListWidget::item:selected:active {
  58. background-color: rgba(0, 0, 0, 0.06);
  59. color: rgba(0, 0, 0, 0.7);
  60. }