Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/css/combobox.css
4058 views
1
/*
2
* Copyright 2007 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.ComboBox and its derivatives.
10
*/
11
12
13
@require './menu';
14
@require './menuitem';
15
@require './menuseparator';
16
17
.goog-combobox {
18
background: #ddd url(//ssl.gstatic.com/closure/button-bg.gif) repeat-x scroll left top;
19
border: 1px solid #b5b6b5;
20
font: normal small arial, sans-serif;
21
}
22
23
.goog-combobox input {
24
background-color: #fff;
25
border: 0;
26
border-right: 1px solid #b5b6b5;
27
color: #000;
28
font: normal small arial, sans-serif;
29
margin: 0;
30
padding: 0 0 0 2px;
31
vertical-align: bottom; /* override demo.css */
32
width: 200px;
33
}
34
35
.goog-combobox input.label-input-label {
36
background-color: #fff;
37
color: #aaa;
38
}
39
40
.goog-combobox .goog-menu {
41
margin-top: -1px;
42
width: 219px; /* input width + button width + 3 * 1px border */
43
z-index: 1000;
44
}
45
46
.goog-combobox-button {
47
cursor: pointer;
48
display: inline-block;
49
font-size: 10px;
50
text-align: center;
51
width: 16px;
52
}
53
54
/* IE6 only hack */
55
* html .goog-combobox-button {
56
padding: 0 3px;
57
}
58
59