Path: blob/trunk/third_party/closure/goog/css/autocomplete.css
2868 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*12* @author [email protected] (Daniel Pupius)13* @author [email protected] (Srinivas Annam)14*/151617/*18* TODO(annams): Rename (here and in renderer.js) to specify class name as19* goog-autocomplete-renderer20*/21.ac-renderer {22font: normal 13px Arial, sans-serif;23position: absolute;24background: #fff;25border: 1px solid #666;26-moz-box-shadow: 2px 2px 2px rgba(102, 102, 102, .4);27-webkit-box-shadow: 2px 2px 2px rgba(102, 102, 102, .4);28width: 300px;29}3031.ac-row {32cursor: pointer;33padding: .4em;34}3536.ac-highlighted {37font-weight: bold;38}3940.ac-active {41background-color: #b2b4bf;42}434445