style.css
2.28 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
90
91
92
93
94
95
96
97
98
99
100
101
.zd-select-layout{
position: relative;
width: 60px;
height: 33px;
}
.zd-select-layout .btn-select{
width: 60px;
height: 33px;
line-height: 33px;
text-align: center;
background-color:#00b4ec;
color: #fff;
font-size: 12px;
padding: 0;
}
.zd-select-layout .select-list-layout{
position: absolute;
top:45px;
left: -112px;
z-index: 10;
width: 285px;
height: 430px;
background-color: #fff;
box-shadow:0 -2px 10px #cfcfcf;
}
.zd-select-layout .select-list-layout .select-list-layout-p{
position: relative;
}
.zd-select-layout .select-list-layout .select-list-layout-p:before{
content: "";
position: absolute;
top: -8px;
left: 50%;
margin-left: -5px;
overflow: hidden;
border-top:0 solid transparent;
border-left:8px solid transparent;
border-right:8px solid transparent;
border-bottom:8px solid #fff;
}
.zd-select-layout .select-list-layout .select-list-layout-p .select-set{
padding: 10px;
}
.zd-select-layout .select-list-layout .select-list-layout-p .select-set-l{
float: left;
width: 195px;
}
.zd-select-layout .select-list-layout .select-list-layout-p .select-set .form-control{
height: 25px;
border-radius: 0;
font-size: 12px;
}
.zd-select-layout .select-list-layout .select-tip{
text-align: center;
}
.zd-select-layout .select-list-layout .select-list{
width: 100%;
height: 315px;
overflow-x:hidden ;
overflow-y:auto ;
}
.zd-select-layout .select-list-layout .select-list .item{
height: 35px;
overflow: hidden;
line-height: 35px;
padding: 0 10px;
margin: 0;
white-space: nowrap;
text-overflow: ellipsis;
}
.zd-select-layout .select-list-layout .select-list .item-active{
background: #daf4fd;
}
.zd-select-layout .select-list-layout .btn-ok{
float: left;
width: 85px;
text-align: center;
height: 35px;
line-height: 35px;
background-color:#00b4ec;
color: #fff;
font-size: 12px;
padding: 0;
margin:18px 0 0 50px;
display: block;
}
.zd-select-layout .select-list-layout .btn-cancel{
width: 85px;
text-align: center;
height: 35px;
line-height: 35px;
background-color:#fff;
font-size: 12px;
padding: 0;
margin:18px 0 0 10px;
display: block;
float: left;
}