ContextMenuItem.css 226 B

12345678910111213141516171819
  1. .item {
  2. cursor: pointer;
  3. margin: 0;
  4. padding: 8px 14px;
  5. user-select: none;
  6. }
  7. .item:hover {
  8. background: #ffefd7;
  9. }
  10. .disabled {
  11. cursor: default;
  12. color: gray;
  13. }
  14. .item.disabled:hover {
  15. background: transparent;
  16. }