Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. /* =Search Autocomplete
  2. ----------------------------------------------- */
  3. .ui-helper-hidden-accessible {
  4. display: none;
  5. }
  6.  
  7. .ui-menu-item a {
  8. color: #fff;
  9. }
  10.  
  11. .ui-menu {
  12. // border: 1px solid $link-color;
  13. text-align: left;
  14. width: 200px;
  15. z-index: 10000;
  16. }
  17.  
  18. .ui-menu .ui-menu-item a {
  19. display: block;
  20. padding: 10px;
  21. background-color: $title-color;
  22. font-size: 14px;
  23. opacity: 0.9;
  24. line-height: 1.2;
  25. cursor: pointer;
  26.  
  27. -ms-word-wrap: break-word;
  28. word-wrap: break-word;
  29. }
  30.  
  31. .ui-menu .ui-menu-item a.ui-state-focus,
  32. .ui-menu .ui-menu-item a.ui-state-active {
  33. background-color: #898989;
  34. opacity: 1;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement