ContextMenu.css 645 B

12345678910111213141516171819202122232425262728293031323334
  1. .context-menu {
  2. position: relative;
  3. border-radius: 4px;
  4. box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  5. padding: 0;
  6. list-style: none;
  7. user-select: none;
  8. margin: -0.25rem 0 0 0.125rem;
  9. padding: 0.25rem 0;
  10. background-color: #f2f2f2;
  11. border: 1px solid #bcbcbc;
  12. }
  13. .context-menu-option {
  14. position: relative;
  15. width: 100%;
  16. min-width: 9.5rem;
  17. margin: 0;
  18. padding: 0.25rem 1rem 0.25rem 1.25rem;
  19. text-align: left;
  20. border-radius: 0;
  21. background-color: #f2f2f2;
  22. border: none;
  23. white-space: nowrap;
  24. }
  25. .context-menu-option:hover {
  26. color: #fff;
  27. background-color: #4e95f5;
  28. }
  29. .context-menu-option:focus {
  30. z-index: 1;
  31. }