railsrumble/r13-team-357

View on GitHub
app/assets/stylesheets/autocomplete.css.scss

Summary

Maintainability
Test Coverage
// Place all the styles related to the companies controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
ul.ui-autocomplete {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  border: solid 1px #999;
  cursor: default;
  li {
    background-color:  #ffffff;
    border-top: solid 1px #ddddd;
    margin: 0;
    padding: 0;
    a {
      color: #0000;
      display: block;
      padding: 3px;
    }
    a.ui-state-hover, a.ui-state-active {
      background-color: orange;
      color: #ffffff;
    }
  }
}