-
Notifications
You must be signed in to change notification settings - Fork 15
/
select.css
95 lines (77 loc) · 2.22 KB
/
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
91
92
93
94
95
.select2Dropdown, .select2-selection {
width: 100%;
}
.select2-selection--single {
border: none !important;
}
.select2-selection__rendered {
line-height: 48px !important;
padding-right: 52px !important;
padding-left: 14px !important;
border: 1px solid rgba(241, 241, 244, 1) !important;
}
.select2-container--focus, .select2-selection--single {
border: none !important;
outline: none !important;
}
.select2Dropdown, .select2-selection, .select2-selection__rendered {
min-height: 48px !important;
border-radius: 0 !important;
}
.select2-selection {
background-color: rgba(30, 35, 42, 1) !important;
}
.select2-selection__placeholder, .select2-search__field::placeholder, .select2-selection__rendered {
color: rgba(241, 241, 244, 1) !important;
}
.select2-selection__arrow {
border-left-color: rgba(241, 241, 244, 1) !important;
}
.select2-selection__arrow b {
border-color: rgba(241, 241, 244, 1) transparent transparent !important;
}
.select2-selection__arrow {
height: 48px !important;
width: 44px !important;
border-left: 1px solid rgba(241, 241, 244, 1);
}
.select2-container--open .select2-selection__arrow {
height: 52px !important;
}
.select2-dropdown {
border-width: 3px;
border-radius: 0;
border-color: rgba(241, 241, 244, 1);
}
.select2-container--open .select2-selection__rendered, .select2-container--open .select2-selection__arrow {
border-width: 3px !important;
}
.select2-container--open .select2-selection__arrow b {
border-color: transparent transparent rgba(241, 241, 244, 1) transparent !important;
}
.select2-results__options {
}
.select2-results__option {
letter-spacing: 0.2px;
background: rgba(30, 35, 42, 1);
padding-left: 14px;
}
.select2-results__option--selectable {
height: 52px !important;
line-height: 52px;
}
.select2-results__option:hover, .select2-container--default .select2-results__option--selected {
background: rgba(51, 51, 51, 1) 0% 0% no-repeat !important;
}
.select2-dropdown--below {
margin-top: 6px;
}
.select2-results__option--highlighted {
background-color: rgba(51, 51, 51, 1) !important;
color: rgba(30, 35, 42, 1) !important;
}
.select2-results__option--highlighted[aria-selected=true] {
color: white !important;
background-color: rgba(51, 51, 51, 1) !important;
border: none
}