Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/autocomplete.css
2868 views
1
/*
2
* Copyright 2009 The Closure Library Authors. All Rights Reserved.
3
*
4
* Use of this source code is governed by the Apache License, Version 2.0.
5
* See the COPYING file for details.
6
*/
7
8
/*
9
* Styles for goog.ui.ac.AutoComplete and its derivatives.
10
* Note: these styles need some work to get them working properly at various
11
* font sizes other than the default.
12
*
13
* @author [email protected] (Daniel Pupius)
14
* @author [email protected] (Srinivas Annam)
15
*/
16
17
18
/*
19
* TODO(annams): Rename (here and in renderer.js) to specify class name as
20
* goog-autocomplete-renderer
21
*/
22
.ac-renderer {
23
font: normal 13px Arial, sans-serif;
24
position: absolute;
25
background: #fff;
26
border: 1px solid #666;
27
-moz-box-shadow: 2px 2px 2px rgba(102, 102, 102, .4);
28
-webkit-box-shadow: 2px 2px 2px rgba(102, 102, 102, .4);
29
width: 300px;
30
}
31
32
.ac-row {
33
cursor: pointer;
34
padding: .4em;
35
}
36
37
.ac-highlighted {
38
font-weight: bold;
39
}
40
41
.ac-active {
42
background-color: #b2b4bf;
43
}
44
45