style.css 797 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .lora-context-menu {
  2. position: fixed;
  3. z-index: 10000;
  4. background: #1b1a1a;
  5. border-radius: 5px;
  6. transform: scale(0);
  7. transform-origin: top left;
  8. }
  9. .lora-context-menu.visible {
  10. transform: scale(1);
  11. transition: transform 200ms ease-in-out;
  12. }
  13. .lora-context-menu .item {
  14. padding: 8px 10px;
  15. font-size: 15px;
  16. color: #eee;
  17. cursor: pointer;
  18. border-radius: inherit;
  19. }
  20. .lora-context-menu .hritem {
  21. color: #eee;
  22. border-radius: inherit;
  23. }
  24. .lora-context-menu .item:hover {
  25. background: #343434;
  26. }
  27. .lorahelp-touch-icon {
  28. position: absolute;
  29. top: 0;
  30. right: 0;
  31. background: rgba(0,0,0,0.5);
  32. padding: 0 6px 0 6px;
  33. color: white;
  34. }
  35. #translate_language_selector option {
  36. background-color: var(--background-fill-primary);
  37. }