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