-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsmartMultiSelectBox.css
More file actions
86 lines (77 loc) · 2.12 KB
/
smartMultiSelectBox.css
File metadata and controls
86 lines (77 loc) · 2.12 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
.ui-smsbox {
border: 2px solid #424242;
min-height: 231px;
width: 402px;
border-radius: 4px;
background: aliceBlue;
}
.ui-smsbox-head {
border-bottom: 1px solid gray;
height: 30px;
text-align: center;
line-height: 30px;
}
.ui-smsbox-to, .ui-smsbox-from {
width: 180px;
min-height: 200px;
max-height: 200px;
overflow: scroll;
}
.ui-smsbox-from {
float:left;
border-right: 1px solid gray;
}
.ui-smsbox-to {
float:left;
border-left: 1px solid gray;
}
.ui-smsbox-from .head, .ui-smsbox-to .head {
background-color: #DDD;
text-align: center;
padding: 5px 0;
border-bottom: 1px solid #AAA;
}
.ui-smsbox .item {
border-bottom: 1px solid #b8b9a6;
padding: 5px 10px;
}
.ui-smsbox .item:last-child {
border: none;
}
.ui-smsbox .item:hover {
background-color: #89c899;
-webkit-transition: all 0.24s ease-out;
-moz-transition: all 0.24s ease-out;
-o-transition: all 0.24s ease-out;
transition: all 0.24s ease-out;
}
.ui-smsbox .item.selected {
background-color: #13985c;
}
.ui-smsbox-middle {
width: 40px;
min-height: 200px;
float: left;
}
.add-button, .remove-button {
width: 30px;
margin: 40px 5px;
border-top: #7895AC 1px solid;
border-bottom: #375167 1px solid;
background-color: #46749C;
background-image: -webkit-gradient(linear, left top, left bottom, from(#4c7192), to(#3b5871));
background-image: -webkit-linear-gradient(top, #77af7c, #537a57);
background-image: -moz-linear-gradient(top, #4c7192, #3b5871);
background-image: -ms-linear-gradient(top, #4c7192, #3b5871);
background-image: -o-linear-gradient(top, #4c7192, #3b5871);
background-image: linear-gradient(top, #4c7192, #3b5871);
}
.add-button:hover, .remove-button:hover {
background-color: #46749C;
background-image: -webkit-gradient(linear, left top, left bottom, from(#689261), to(#55924d));
background-image: -webkit-linear-gradient(top, #729255, #729255);
background-image: -moz-linear-gradient(top, #4c7192, #3b5871);
background-image: -ms-linear-gradient(top, #4c7192, #3b5871);
background-image: -o-linear-gradient(top, #4c7192, #3b5871);
background-image: linear-gradient(top, #4c7192, #3b5871);
}