-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (81 loc) · 1.88 KB
/
style.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
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
95
.multiple-select {
width: 200px;
height: 38px;
cursor: pointer;
display: table;
}
.multiple-select-panel-opended .layui-input {
border-color: #16b777!important;
box-shadow: 0 0 0 3px rgba(22,183,119,.08);
}
.multiple-select-panel-opended .layui-edge {
margin-top: -9px;
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.multiple-select-selection {
position: relative;
min-height: 38px;
padding: 0px 30px 0 4px;
}
.multiple-select-selection-overflow {
top: 0px;
display: inline-block;
padding-bottom: 4px;
}
.multiple-select-selection-overflow .multiple-select-selection-overflow-item{
display: inline-block;
max-width: 100%;
}
.multiple-select-selection-overflow
.multiple-select-selection-overflow-item
.multiple-select-selection-item {
display: inline-block;
box-sizing: border-box;
max-width: 100%;
height: 30px;
margin-top: 4px;
line-height: 28px;
background: rgba(0, 0, 0, 0.06);
border: 1px solid rgba(5, 5, 5, 0.06);
border-radius: 2px;
transition: font-size 0.3s,line-height 0.3s,height 0.3s;
user-select: none;
padding-left: 8px;
padding-right: 4px;
}
.multiple-select-selection-item-remove {
vertical-align: middle;
}
.multiple-select-selection-item-remove:hover {
cursor: pointer;
color: #000;
}
.multiple-select-option {
padding: 0 10px;
line-height: 36px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.layui-form-select-panel-opened .layui-edge {
margin-top: -9px;
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.multiple-select-search {
padding: 5px;
}
.multiple-select-selection-item-content {
vertical-align: middle;
}
.multiple-select-option-selected {
color: #409eff;
}
.multiple-select-option-selected::after {
font-family: layui-icon;
content: "\e605";
position: absolute;
top: 5px;
right: 20px;
}