Path: blob/trunk/third_party/closure/goog/css/autocomplete.css
4015 views
/*1* Copyright 2009 The Closure Library Authors. All Rights Reserved.2*3* Use of this source code is governed by the Apache License, Version 2.0.4* See the COPYING file for details.5*/67/*8* Styles for goog.ui.ac.AutoComplete and its derivatives.9* Note: these styles need some work to get them working properly at various10* font sizes other than the default.11*/1213@provide 'goog.css.ac';1415/*16* TODO(annams): Rename (here and in renderer.js) to specify class name as17* goog-autocomplete-renderer18*/19.ac-renderer {20font: normal 13px Arial, sans-serif;21position: absolute;22background: #fff;23border: 1px solid #666;24-moz-box-shadow: 2px 2px 2px rgba(102, 102, 102, .4);25-webkit-box-shadow: 2px 2px 2px rgba(102, 102, 102, .4);26width: 300px;27}2829.ac-row {30cursor: pointer;31padding: .4em;32}3334.ac-highlighted {35font-weight: bold;36}3738.ac-active {39background-color: #b2b4bf;40}414243