forked from dusty-nv/jetson-inference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdropdown.css
40 lines (33 loc) · 867 Bytes
/
dropdown.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
/* input box */
/*.Select-control {
background-color: black;
}*/
/* changes the text color of input box */
/*.Select-value-label {
color: white !important;
}*/
/*.Select--single > .Select-control .Select-value, .Select-placeholder {
border: 1px solid grey;
border-radius: 4px;
}*/
/* dropdown menu options */
.VirtualizedSelectOption {
background-color: black;
color: white;
}
/* dropdown menu hover effect */
.VirtualizedSelectFocusedOption {
background-color: black;
opacity: .7;
}
/* border on focus - default is blue
* shadow box around input box. default is blue
*/
.is-focused:not(.is-open) > .Select-control {
border-color: var(--primary);
box-shadow: none;
}
/* this colors the input box text and x of multi dropdown*/
/*.Select--multi .Select-value {
color: white;
}*/