autocompleter.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ul {
  2. &.autocompleter-choices {
  3. position: absolute;
  4. margin: 0;
  5. padding: 0;
  6. list-style: none;
  7. border: 1px solid #7c7c7c;
  8. border-left-color: #c3c3c3;
  9. border-right-color: #c3c3c3;
  10. border-bottom-color: #ddd;
  11. background-color: #fff;
  12. text-align: left;
  13. font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  14. z-index: 50;
  15. background-color: #fff;
  16. li {
  17. position: relative;
  18. margin: -2px 0 0 0;
  19. padding: 0.2em 1.5em 0.2em 1em;
  20. display: block;
  21. float: none !important;
  22. cursor: pointer;
  23. font-weight: normal;
  24. white-space: nowrap;
  25. font-size: 1em;
  26. line-height: 1.5em;
  27. &.autocompleter-selected {
  28. background-color: #444;
  29. color: #fff;
  30. span.autocompleter-queried {
  31. color: #9FCFFF;
  32. }
  33. }
  34. }
  35. span.autocompleter-queried {
  36. display: inline;
  37. float: none;
  38. font-weight: bold;
  39. margin: 0;
  40. padding: 0;
  41. }
  42. }
  43. }
  44. .autocompleter-loading {
  45. background-image: url(images/spinner.gif);
  46. background-repeat: no-repeat;
  47. background-position: right 50%;
  48. }
  49. textarea.autocompleter-loading {
  50. background-position: right bottom;
  51. }