-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
55 lines (52 loc) · 1.01 KB
/
index.css
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
.multi-select-panel {
position: absolute;
top: 50%;
left: 50%;
width: 480px;
padding: 20px;
transform: translate(-50%,-50%);
background: #fff;
box-shadow: 0 0 8px rgba(0,0,0,0.1);
border-radius: 6px;
overflow: hidden;
}
.multi-select-panel .middle-controllers {
float: left;
width: 140px;
text-align: center;
}
.multi-select-panel .middle-controllers button {
display: block;
margin: 0 auto;
margin-bottom: 20px;
}
.multi-select-panel .left-selects, .right-selects {
float: left;
width: 170px;
height: 200px;
}
.multi-select-panel option {
padding: 4px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.multi-select-panel select {
width: 170px;
height: 200px;
overflow-y: auto;
font-size: 12px;
color: #666;
outline: none;
border: 1px solid #aaa;
border-radius: 3px;
}
.multi-select-panel .confirm-selects {
padding-top: 30px;
text-align: center;
clear: both;
}
.multi-select-panel .confirm-selects button {
margin: 0 24px;
padding: 0 20px
}