Skip to content

Instantly share code, notes, and snippets.

@jonathanpath
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathanpath/b5a7bfcce204c4b262c0 to your computer and use it in GitHub Desktop.
Save jonathanpath/b5a7bfcce204c4b262c0 to your computer and use it in GitHub Desktop.
Simple border radius styling for jQuery UI autocomplete
.ui-autocomplete {
border-radius: 4px;
padding: 0;
.ui-menu-item {
margin: 0;
padding: 10px 20px;
border-bottom: solid 1px #eee;
&:first-child {
border-radius: 3px 3px 0 0;
}
&:only-child {
border-radius: 3px !important;
}
&:last-child {
border-radius: 0 0 3px 3px;
border: none;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment