Created
November 7, 2012 04:23
-
-
Save agustinhaller/4029552 to your computer and use it in GitHub Desktop.
css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ========================================================================== | |
| Product autocomplete styles | |
| ========================================================================== */ | |
| ul.autocomplete-list | |
| { | |
| z-index: 3; | |
| width: 390px; | |
| background: white; | |
| margin: 0px; | |
| padding: 0px; | |
| border-radius: 0px 0px 3px 3px; | |
| } | |
| ul.autocomplete-list li.autocomplete-item | |
| { | |
| list-style: none; | |
| padding: 5px; | |
| display: inline-block; | |
| width: 380px; | |
| float: left; | |
| } | |
| ul.autocomplete-list li.autocomplete-item:nth-child(odd) | |
| { | |
| background-color: #F9F9F9; | |
| } | |
| ul.autocomplete-list li.autocomplete-item:nth-child(even) | |
| { | |
| background-color: #FFF; | |
| } | |
| ul.autocomplete-list li.autocomplete-item:hover | |
| { | |
| background-color: #E6E6E6; | |
| } | |
| li.autocomplete-item a | |
| { | |
| text-decoration: none; | |
| } | |
| li.autocomplete-item .product-image | |
| { | |
| width:50px; | |
| margin-right: 10px; | |
| } | |
| li.autocomplete-item .product-details .product-rating | |
| { | |
| margin-left: 0px; | |
| } | |
| li.autocomplete-item .product-details h5 | |
| { | |
| margin: 0px 0px 5px 0px; | |
| } | |
| li.autocomplete-item .reviews-resume | |
| { | |
| text-align: center; | |
| width: 65px; | |
| margin: 10px 0px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment