shortcut.css 748 B

123456789101112131415161718192021222324252627282930313233343536
  1. .stag-shortcuts {
  2. position: absolute;
  3. border: 1px solid #aaa;
  4. background: #fff;
  5. margin-top: 1.3rem;
  6. display: none;
  7. min-width: 160px;
  8. max-width: 280px;
  9. }
  10. .stag-shortcuts>.sc {
  11. font-size: 13px;
  12. padding: 2px 6px;
  13. white-space: nowrap;
  14. width: 100%;
  15. cursor: pointer;
  16. overflow: hidden;
  17. text-overflow: ellipsis;
  18. }
  19. .stag-shortcuts>.sc:hover {
  20. background-color: aliceblue;
  21. }
  22. .stag-shortcuts>.sc:not(:last-child) {
  23. border-bottom: 1px solid #ccc;
  24. }
  25. .stag-shortcuts>.sc.active {
  26. background-color: #cfe1f1;
  27. }
  28. form#create-shortcut-form {
  29. position: absolute;
  30. background: #fff;
  31. padding: 10px;
  32. border: 1px solid #ccc;
  33. border-radius: 3px;
  34. display: none;
  35. z-index: 101;
  36. }