-
Notifications
You must be signed in to change notification settings - Fork 0
/
sortList.css
145 lines (142 loc) · 2.31 KB
/
sortList.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#sortList *{
margin: 0px;
padding: 0px;
font-size: 12px;
}
#sortList a{
color: #333;
}
#sortList a:hover{
color: #ff7800;
}
#sortList{
border: 1px solid #ccc;
background-color: #fff;
overflow: hidden;
position: absolute;
top:50px;
left: 100px;
/*
display: none;
*/
}
#sortList ul, #sortList li{
list-style: none;
}
#sortList_panel{
border: 0px solid #999;
padding: 2px 10px 2px 2px;
zoom:1;
display: inline-block;
*zoom: 1;
*display: inline;
}
#sortList_content{
border: 1px solid #ccc;
height: 310px;
overflow-y: scroll;
padding-right: 20px;
min-width: 150px;
margin-right: 5px;
position: relative;
display: inline-block;
/*以下是设置IE的display为inline-block*/
*zoom: 1;
*display: inline;
}
#sortList_content li{
/*
display: none;
*/
}
.sortList_content_hightLight{
background-color: #f5f5f5;
}
.sortList_content_selected{
background-color: #D6F0FE;
border-bottom: 1px solid #87BBD8;
}
#sortList_content li p{
color: #999;
border-bottom: 1px solid #ccc;
padding-left: 2px;
}
#sortList_content li div{
margin-left: 10px;
padding: 2px;
cursor: pointer;
border-left: 1px solid #ccc;
}
#sortList_content #sortList_content_notsort div{
margin-left: 5px;
padding: 2px;
cursor: pointer;
}
#sortList_menu{
border: 1px solid #ccc;
width: 18px;
/*
height: 314px;
*/
font-size: 14px;
line-height: 12px;
text-align: center;
position: relative;
zoom:1;
display: inline-block;
*zoom: 1;
*display: inline;
}
#sortList_title{
border-bottom: 1px solid #C9D7F1;
background-color: #F5F5F5;
padding: 5px 25px 5px 5px;
margin-bottom: 2px;
}
#sortList_close{
position: absolute;
top: 3px;
right: 3px;
/*
border: 1px solid #617087;
*/
font-weight: bold;
font-size: 18px;
width: 18px;
height: 18px;
text-align: center;
color: #999;
cursor: pointer;
}
#sortList_min_width{
height: 20px;
border: 0px solid red;
width: 150px;
margin-top : -20px;
display: block;
}
#sortList_selectItem{
position:absolute;
left: -5px;
width: 30px;
line-height: 18px;
border: 1px solid #ccc;
background-color: #fafafa;
color:#ed912f;
z-index: 99;
font-size: 20px;
font-weight: bold;
text-align: center;
display: none;
}
#sortList_btn{
border: 0px solid red;
padding: 5px;
text-align: right;
}
#sortList_btn a{
padding:3px 8px;
margin-left: 5px;
background-color: #f9f9f9;
border: 1px solid #ddd;
}