-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcombo.css
More file actions
60 lines (50 loc) · 901 Bytes
/
combo.css
File metadata and controls
60 lines (50 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.cbInput {
display: inline-block;
border: 1px solid #A9A9A9;
position: relative;
cursor: default;
box-sizing: border-box;
border-radius: 2px;
}
.cbBar {
padding: 3px;
}
.cbBar > div {
display: table-cell;
}
.cbTextBar {
min-width: 30px;
}
.cbIconBar {
border-left: 1px solid gray;
padding-left: 4px;
}
.cbPopupIcon {
display: inline-block;
width: 3px;
height: 6px;
box-sizing: border-box;
border-top: 6px solid black;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
}
.cbPopup {
position: absolute;
border: 1px solid black;
background-color: white;
}
.cbPopList {
list-style-type: none;
min-width: 40px;
padding: 3px;
margin: 0;
}
.cbPopList > li {
display: block;
}
.cbPopList > li:hover {
background-color: lightblue;
}
.cbPopList > li.cbSelected {
background-color: #549dff;
}