You are here

better-autocomplete.css in Linkit 7.2

Same filename and directory in other branches
  1. 7.3 better-autocomplete/better-autocomplete.css
/* Stylesheet for Better Autocomplete jQuery plugin by Didrik Nordström */

/**
 * Do NOT edit this file! Instead, include another stylesheet with your custom
 * overrides and extensions. Copy the selectors you need to edit and place them
 * in your CSS file. And remember to include that file AFTER this file.
 */

/* Reset styles for lists */
ul.better-autocomplete {
  madding: 0 !important;
  margin: 0 !important;
}
.better-autocomplete,
.better-autocomplete > .result {
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
}

.better-autocomplete {
  text-align: left;
  font-family: 'Lucida Grande', Helvetica, Arial, Verdana, sans-serif;
  overflow: auto;
  cursor: default;
  background: white;
  border-bottom: 1px solid #bfbfbf;
}

/* Groups */

.better-autocomplete > .group {
  position: relative;
  padding: 3px;
  text-align: center;
  background: #e7e7e7;
  border-color: #bfbfbf;
  border-width: 1px 1px 0 1px;
  border-style: solid;
}

.better-autocomplete > .group > h3 {
  font-size: 11px;
  color: #555;
  padding: 0;
  margin: 0;
}

/* Results */

.better-autocomplete > .result {
  position: relative;
  padding: 5px 7px;
  background: white;
  border-color: #bfbfbf;
  border-width: 1px 1px 0 1px;
  border-style: solid;
}

.better-autocomplete > .result > h4 {
  font-size: 12px;
  color: #3c3c3c;
  padding: 0;
  margin: 0 0 2px 0;
}

.better-autocomplete > .result > p {
  font-size: 11px;
  line-height: 1.3;
  color: #6f6f6f;
  padding: 0;
  margin: 0;
}

/* Highlighting */

.better-autocomplete > .result.highlight {
  background: #0075ba;
  border-top-color: #1f4a64;
}

.better-autocomplete > .result.highlight > h4,
.better-autocomplete > .result.highlight > p {
  color: white;
}

File

better-autocomplete/better-autocomplete.css
View source
  1. /* Stylesheet for Better Autocomplete jQuery plugin by Didrik Nordström */
  2. /**
  3. * Do NOT edit this file! Instead, include another stylesheet with your custom
  4. * overrides and extensions. Copy the selectors you need to edit and place them
  5. * in your CSS file. And remember to include that file AFTER this file.
  6. */
  7. /* Reset styles for lists */
  8. ul.better-autocomplete {
  9. madding: 0 !important;
  10. margin: 0 !important;
  11. }
  12. .better-autocomplete,
  13. .better-autocomplete > .result {
  14. list-style: none;
  15. padding: 0;
  16. margin: 0;
  17. background: none;
  18. }
  19. .better-autocomplete {
  20. text-align: left;
  21. font-family: 'Lucida Grande', Helvetica, Arial, Verdana, sans-serif;
  22. overflow: auto;
  23. cursor: default;
  24. background: white;
  25. border-bottom: 1px solid #bfbfbf;
  26. }
  27. /* Groups */
  28. .better-autocomplete > .group {
  29. position: relative;
  30. padding: 3px;
  31. text-align: center;
  32. background: #e7e7e7;
  33. border-color: #bfbfbf;
  34. border-width: 1px 1px 0 1px;
  35. border-style: solid;
  36. }
  37. .better-autocomplete > .group > h3 {
  38. font-size: 11px;
  39. color: #555;
  40. padding: 0;
  41. margin: 0;
  42. }
  43. /* Results */
  44. .better-autocomplete > .result {
  45. position: relative;
  46. padding: 5px 7px;
  47. background: white;
  48. border-color: #bfbfbf;
  49. border-width: 1px 1px 0 1px;
  50. border-style: solid;
  51. }
  52. .better-autocomplete > .result > h4 {
  53. font-size: 12px;
  54. color: #3c3c3c;
  55. padding: 0;
  56. margin: 0 0 2px 0;
  57. }
  58. .better-autocomplete > .result > p {
  59. font-size: 11px;
  60. line-height: 1.3;
  61. color: #6f6f6f;
  62. padding: 0;
  63. margin: 0;
  64. }
  65. /* Highlighting */
  66. .better-autocomplete > .result.highlight {
  67. background: #0075ba;
  68. border-top-color: #1f4a64;
  69. }
  70. .better-autocomplete > .result.highlight > h4,
  71. .better-autocomplete > .result.highlight > p {
  72. color: white;
  73. }