-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathmultiSelector.css
More file actions
71 lines (70 loc) · 1.54 KB
/
multiSelector.css
File metadata and controls
71 lines (70 loc) · 1.54 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
.vp-cs-select-container {
width: 100%;
height: calc(100% - 25px);
display: grid;
grid-template-columns: calc(47% - 15px) 50px calc(47% - 15px);
grid-auto-rows: 100%;
}
.vp-cs-select-search {
width: 100%;
}
.vp-cs-select-search::after {
content: '';
background-image: url(../../img/close_big.svg);
}
.vp-cs-select-box {
width: 100%;
height: 100%;
border: 0.25px solid #E4E4E4;
overflow-y: auto;
overflow-x: hidden;
}
.vp-cs-select-box.left {
/* width: 160px; */
width: 100%;
height: calc(100% - 32px);
}
.vp-cs-select-item {
width: 100%;
height: 25px;
padding: 0px 10px;
border-bottom: 0.25px solid #E4E4E4;
line-height: 25px;
background-color: white;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.vp-cs-select-item:hover {
cursor: pointer;
background-color: #E4E4E4;
}
.vp-cs-select-item.selected {
color: var(--font-highlight);
background-color: #F5F5F5;
}
/* Item Sorting FIXME: change span to class */
.right .vp-cs-select-item span {
padding: 0px 10px 0px 0px;
}
/* TODO: If sortable, apply this style */
/* .right .vp-cs-select-item span:hover {
cursor: n-resize;
} */
/* Select Boxes */
.vp-cs-select-btn-box {
margin: auto;
display: inherit;
}
.vp-cs-select-btn-box button {
height: 24px;
background: #FFFFFF;
border: 0.25px solid #E4E4E4;
border-radius: 3px;
}
.vp-cs-select-btn-box button:not(:nth-child(1)) {
margin-top: 5px;
}
.vp-cs-select-btn-box button:hover {
background: #F8F8F8;
}