-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (78 loc) · 1.47 KB
/
style.css
File metadata and controls
94 lines (78 loc) · 1.47 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
.multiselect {
position: relative;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.multiselect_options {
padding: 6px;
border: .5px solid #9d9d9d;
min-height: calc(1em + 6px);
display: flex;
flex-wrap: wrap;
gap: 5px;
}
.multi_option {
display: flex;
cursor: default;
border: #fff solid .5px;
border-radius: 3px;
background: #ddd;
color: #000;
height: 100%;
align-items: center;
}
.multi_option_icon {
padding: 5px;
border-right: #fff solid .5px;
}
.multi_option_text {
padding: 5px 10px;
}
.multi_option_icon {
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.multi_option_icon svg {
width: 14px;
height: 14px;
background-color: #fff;
border-radius: 50%;
}
.multiselect_dropdown_box {
display: none;
position: absolute;
top: 100%;
right: 0px;
left: 0px;
z-index: 9999;
background: #fff;
max-height: 300px;
overflow-y: scroll;
box-shadow: 0px 0px 10px rgba(0, 0, 0, .10);
}
.multiselect_dropdown_box.active {
display: block;
}
.multiselect_dropdown {
padding: 7px 10px;
border: .5px solid #9d9d9d;
border-top: none;
cursor: pointer;
}
.multiselect_dropdown.added {
background: #ddd;
}
.multiselect_dropdown:hover {
background: rgb(58, 156, 255);
color: #fff;
}
.multiselect_dropdown:first-child {
border-top: .5px solid #9d9d9d;
/* border-radius: 5px 5px 0px 0px; */
}
.multiselect_dropdown:last-child {
border-radius: 0px 0px 5px 5px;
}