-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathVirtualizedSelect.example.css
More file actions
107 lines (88 loc) · 1.46 KB
/
VirtualizedSelect.example.css
File metadata and controls
107 lines (88 loc) · 1.46 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.header {
margin: 2rem 0 1rem;
}
.description {
margin: 1rem 0;
font-size: .85rem;
color: #999;
}
.optionsList {
display: flex;
list-style: none;
margin: 1rem 0;
padding: 0;
}
.optionListItem {
display: flex;
flex: 1 1 auto;
}
.countryOption {
display: flex;
align-items: center;
height: 40px;
padding: 0 1rem;
}
.countryOptionFocused {
background-color: rgba(0, 126, 255, 0.1);
}
.countryOptionSelected {
font-weight: bold;
}
.countryFlag {
height: 25px;
width: auto;
flex: 0 0 auto;
}
.countryLabel {
flex: 1 1 auto;
}
.nameOption {
display: flex;
align-items: center;
height: 35px;
padding: 0 1rem;
border-bottom: 1px solid #ddd;
}
.nameHeader {
height: 25px;
background-color: #eee;
font-weight: bold;
font-size: .85;
}
.nameOptionFocused {
background-color: rgba(0, 126, 255, 0.1);
}
.nameOptionSelected {
font-weight: bold;
}
:global(a.Select-value-label) {
text-decoration: none;
}
:global(a.Select-value-label):hover {
text-decoration: underline;
cursor: pointer;
}
.btnGroup {
display: flex;
flex-direction: row;
}
.btnGroup button {
flex: 1 1 0;
height: 30px;
background: #e0e0e0e0;
appearance: none;
border-radius: 0;
border-top: none;
border-right: none;
border-bottom: 1px solid #ddd;
border-left: 1px solid #ddd;
}
.btnGroup button:hover {
background: #dcdcdc;
}
.btnGroup button:active {
background: #cdcdcdcd;
}
.btnGroup button:first-child {
border-left: none;
}