-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathreact-bootstrap-timezone-picker.min.css
More file actions
59 lines (51 loc) · 1.02 KB
/
react-bootstrap-timezone-picker.min.css
File metadata and controls
59 lines (51 loc) · 1.02 KB
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
.timezone-picker {
display: inline-block;
font: 13px sans-serif;
position: relative
}
.timezone-picker-textfield input {
width: 100%;
padding: 9px 12px;
font: inherit;
box-sizing: border-box;
outline: 0;
background: #fff;
border: 1px solid #e6ebec;
border-radius: 2px
}
.timezone-picker-list {
top: 100%;
left: 0;
right: 0;
max-height: 200px;
overflow-y: auto;
margin: 0;
padding: 0;
border: 1px solid #e6ebec;
margin-top: -1px;
border-radius: 0 0 3px 3px;
display: none
}
.timezone-picker-list-rel {
position: relative;
}
.timezone-picker-list-abs {
position: absolute;
background-color: white;
z-index: 2000;
opacity: 0.99;
}
.timezone-picker-list-item {
color: #444444;
padding: 5px 12px
}
.timezone-picker-list-item-active {
background: #ececec;
cursor: pointer
}
.timezone-picker-open .timezone-picker-list {
display: block
}
.timezone-picker-selected .timezone-picker-textfield input {
color: #474747
}