You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
894 B

2 years ago
  1. .autocomplete-suggestions {
  2. text-align: left;
  3. cursor: default;
  4. border: 1px solid #ccc;
  5. border-top: 0;
  6. background: #fff;
  7. box-shadow: -1px 1px 3px rgba(0,0,0,.1);
  8. /* core styles should not be changed */
  9. position: absolute;
  10. display: none;
  11. z-index: 9999;
  12. max-height: 254px;
  13. overflow: hidden;
  14. overflow-y: auto;
  15. box-sizing: border-box;
  16. }
  17. .autocomplete-suggestion {
  18. position: relative;
  19. cursor: pointer;
  20. padding: 7px;
  21. line-height: 23px;
  22. white-space: nowrap;
  23. overflow: hidden;
  24. text-overflow: ellipsis;
  25. color: #333;
  26. }
  27. .autocomplete-suggestion b {
  28. font-weight: normal;
  29. color: #1f8dd6;
  30. }
  31. .autocomplete-suggestion.selected {
  32. background: #333;
  33. color: #fff;
  34. }
  35. .autocomplete-suggestion:hover {
  36. background: #444;
  37. color: #fff;
  38. }
  39. .autocomplete-suggestion > .context {
  40. font-size: 12px;
  41. }