-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmsfmultiselect.css
More file actions
82 lines (82 loc) · 1.84 KB
/
msfmultiselect.css
File metadata and controls
82 lines (82 loc) · 1.84 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
/* MSFmultiSelect v2.4
* Copyright (c) 2020 Mini Super Files | https://github.com/minisuperfiles/MSFmultiSelect/blob/master/LICENSE
* https://github.com/minisuperfiles/MSFmultiSelect
* https://minisuperfiles.blogspot.com/p/documentation.html?project=msfmultiselect
*/
.msf_multiselect_container {
display: inline-block;
}
.msf_multiselect_container .msf_multiselect {
border: 1px solid #e4e4e4;
list-style-type:none;
margin: 0;
padding: 0;
position: absolute;
z-index: 240;
}
.msf_multiselect li:hover, .msf_multiselect li:focus{
background-color: #e5e5e5;
}
.msf_multiselect li.active{
background-color: #e5e5e5;
}
.msf_multiselect li{
padding-left: 4px;
background-color: #ffffff;
cursor: pointer;
}
.msf_multiselect_container textarea{
resize: none;
padding-left: 2px;
padding-top: 2px;
overflow: auto;
}
.msf_multiselect_container .msf_multiselect{
max-height: 200px;
overflow: auto;
background-color: white;
display: grid;
text-align: left;
}
.msf_multiselect label{
display: block;
margin-bottom: 1px;
}
/* v2 css here */
.msf_multiselect_container .logger .selectedLabels {
padding: 1px 6px 1px 6px;
background: #f2f2f2;
border: 1px solid #e6e3e3;
border-radius: 25px;
display: inline-block;
font-size: 12px;
}
.msf_multiselect_container .closeBtn {
padding-left: 4px;
cursor: pointer;
color: #ff6060;
}
.msf_multiselect_container .closeBtn.readOnly {
cursor: unset;
}
.msf_multiselect_container .hidden {
display: none !important;
}
.msf_multiselect .searchbox {
width: -moz-available;
width: -webkit-fill-available;
padding: 0;
margin: 0;
height: 30px;
font-size: 12px;
}
.msf_multiselect_container .logger {
border: 1px solid #b6b6b3;;
display: inherit;
cursor: pointer;
padding: 1px;
overflow-y: auto;
}
.msf_multiselect_container .msf_multiselect.offdropdown {
position: unset;
}