Keine Beschreibung

autocomplete.css 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. @CHARSET "UTF-8";
  2. /********************************
  3. A jQuery plugin for search hints
  4. Author: Lorenzo Cioni
  5. https://github.com/lorecioni
  6. ********************************/
  7. .autocomplete-container {
  8. position: relative;
  9. width: 170px;
  10. height: 32px;
  11. }
  12. .autocomplete-input {
  13. padding: 9px;
  14. border-radius: 3px;
  15. font-family: inherit;
  16. float: left;
  17. font-size: 1em;
  18. border: 1px solid rgba(0, 0, 0, 0.19);
  19. margin: 0;
  20. }
  21. .autocomplete-button {
  22. font-family: inherit;
  23. border: none;
  24. background-color: #990101;
  25. color: white;
  26. padding: 8px;
  27. float: left;
  28. cursor: pointer;
  29. border-radius: 0px 3px 3px 0px;
  30. transition: all 0.2s ease-out 0s;
  31. margin: 0.5px 0px 0px -1px;
  32. }
  33. .autocomplete-button:HOVER {
  34. background-color: #D11E1E;
  35. }
  36. .proposal-box {
  37. position: absolute;
  38. height: auto;
  39. border-left: 1px solid rgba(0, 0, 0, 0.11);
  40. border-right: 1px solid rgba(0, 0, 0, 0.11);
  41. left: 0px;
  42. }
  43. .proposal-list {
  44. list-style: none;
  45. box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.44);
  46. -webkit-margin-before: 0em;
  47. -webkit-margin-after: 0em;
  48. -webkit-margin-start: 0px;
  49. -webkit-margin-end: 0px;
  50. -webkit-padding-start: 0px;
  51. }
  52. .proposal-list li {
  53. text-align: left;
  54. padding: 5px;
  55. font-family: inherit;
  56. /*border-bottom: 1px solid #000000;*/
  57. height: 25px;
  58. line-height: 25px;
  59. background-color: #FFFFFF;
  60. cursor: pointer;
  61. }
  62. li.proposal.selected {
  63. background-color: #00a1cb;
  64. color: #FFFFFF;
  65. }