Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/css/autocomplete.css
4015 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
14
@provide 'goog.css.ac';
15
16
/*
17
* TODO(annams): Rename (here and in renderer.js) to specify class name as
18
* goog-autocomplete-renderer
19
*/
20
.ac-renderer {
21
font: normal 13px Arial, sans-serif;
22
position: absolute;
23
background: #fff;
24
border: 1px solid #666;
25
-moz-box-shadow: 2px 2px 2px rgba(102, 102, 102, .4);
26
-webkit-box-shadow: 2px 2px 2px rgba(102, 102, 102, .4);
27
width: 300px;
28
}
29
30
.ac-row {
31
cursor: pointer;
32
padding: .4em;
33
}
34
35
.ac-highlighted {
36
font-weight: bold;
37
}
38
39
.ac-active {
40
background-color: #b2b4bf;
41
}
42
43