-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmultiselect.styles.css
More file actions
89 lines (87 loc) · 1.94 KB
/
multiselect.styles.css
File metadata and controls
89 lines (87 loc) · 1.94 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
.cove-multiselect {
.cove-input__label {
display: block;
}
.wrapper {
align-items: center;
display: inline-flex;
width: 100%;
.selected {
&[aria-disabled='true'] {
background: var(--lightestGray);
}
border: 1px solid var(--cool-gray-10);
border-radius: 0.333rem;
display: inline-block;
font-family: var(--app-font-secondary);
font-size: var(--filter-select-font-size);
font-weight: 300;
line-height: normal;
min-width: 200px;
padding: 6.5px 7px;
width: 100%;
:is(button) {
background: none;
border: none;
}
:is(div) {
background: var(--lightGray);
border-radius: 0.333rem;
display: inline-block;
margin-bottom: 2px;
margin-right: 5px;
padding: 0 0 0 5px;
}
& > span {
position: relative;
top: 2px;
}
.expand {
color: var(--mediumGray);
float: right;
margin-bottom: -3px;
margin-right: -6px;
padding: 2.5px 0px;
position: relative;
top: 2px;
&:focus {
outline: none;
}
}
}
.cove-tooltip__content {
min-width: 120px;
position: absolute;
:is(p) {
margin-bottom: 0;
}
}
.spinner-border {
right: 20% !important;
}
}
.dropdown {
background: white;
border: 1px solid var(--cool-gray-10);
margin-top: 0px;
max-height: 200px;
min-height: 40px;
min-width: 200px;
overflow-y: scroll;
padding-left: 0;
position: absolute;
top: var(--select-height);
z-index: 4;
:is(li) {
cursor: pointer;
list-style: none;
padding: 0 10px;
&:hover {
background: var(--lightGray);
}
}
}
}
.accordion__panel .cove-multiselect .dropdown {
position: relative;
}