Newer
Older
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
.dropdown-filter-dropdown {
position:relative;
display:inline-block;
}
.dropdown-filter-icon {
margin-left:5px;
line-height:1.3;
border:1px solid black;
}
.dropdown-filter-icon:hover {
cursor:pointer;
}
.checkbox-container {
max-height: 400px;
overflow-y: scroll;
}
.dropdown-filter-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 200px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
padding-bottom:5px;
padding-top:5px;
padding-right:5px;
padding-left:5px;
}
.dropdown-filter-content div {
margin-top:5px;
margin-left:5px;
margin-right:5px;
margin-bottom:5px;
}
.dropdown-filter-content div.dropdown-filter-search {
margin-bottom:10px;
margin-top:10px;
}
.dropdown-filter-content div.dropdown-filter-sort {
padding-top:5px;
padding-bottom:5px;
}
.dropdown-filter-content div.dropdown-filter-sort:hover {
background-color:#e1e5e7;
cursor:pointer;
}
.dropdown-filter-content div.dropdown-filter-sort span {
margin-right:5px;
margin-left:5px;
margin-top:5px;
margin-bottom:5px;
color:#000000;
}
.arrow-down {
border: solid black;
border-width: 0 3px 3px 0;
display: inline-block;
padding: 3px;
margin-right:5px;
margin-left:5px;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
}