_jquery-autocomplete.scss 578 B

123456789101112131415161718192021222324252627
  1. //
  2. // jQuery AutoComplete
  3. //
  4. // Overwrite/Extend styles
  5. // --------------------------------------------------
  6. .autocomplete-suggestions {
  7. border-color: $body-bg-dark;
  8. box-shadow: 0 15px 25px rgba(0,0,0,.05);
  9. }
  10. .autocomplete-suggestion {
  11. padding: $input-btn-padding-y $input-btn-padding-x;
  12. color: $body-color;
  13. font-size: $font-size-base;
  14. font-weight: 600;
  15. line-height: $line-height-base;
  16. b {
  17. color: $brand-primary;
  18. font-weight: 600;
  19. }
  20. &.selected {
  21. background-color: $body-bg;
  22. }
  23. }