-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstretch_select.css
91 lines (74 loc) · 1.58 KB
/
stretch_select.css
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.stretch-select-wrapper {
height: 20px;
position: relative;
}
.stretch-select {
max-height: 200px;
overflow-y: auto;
margin-bottom: 5px;}
.stretch-select input {display: inline;}
.stretch-select label {display: inline;}
.stretch-select-row {
padding: 5px 0 5px 5px;
border-bottom: thin solid #ddd;}
.stretch-select-row:hover {background-color: rgba(255, 255, 153, 0.6);}
.stretch-select-open {
position: absolute;
z-index: 30;
width: 100%;
}
.stretch-select-open-body {
max-height: 180px;
border: 2px solid #444;
float: left;
overflow-y: auto;
background-color: white;
width: 100%;
}
.stretch-select-open-controls > div {
float: left;
}
a.stretch-select-button {
text-align: center;
border: 1px black solid;
border-top: none;
cursor: pointer;
padding: 3px 8px;
background-color: #ffc;
text-decoration: none;
font-weight: bold;
display: block;
}
a.stretch-select-button:hover {
background-color: #ff6;
}
.stretch-select-closed-wrapper {
position: absolute;
width: 100%;
}
.stretch-select-closed {
display: block;
position: relative;
padding: 2px 3px 2px 5px;
cursor: pointer;
overflow-x: hidden;
white-space: nowrap;
border: thin solid #444;
background-color: white;
max-height: 200px;
}
.stretch-select-closed:hover {
background-color: rgba(255, 255, 153, 0.4);
}
.stretch-select-arrow {
position: absolute;
right: 3px;
}
.stretch-select-closed-text {
overflow-x: hidden;
margin-right: 18px;}
.stretch-select .total {display: inline;}
.stretch-select .summary {
display: inline;
color: #666;
overflow-x: hidden;}