-
Notifications
You must be signed in to change notification settings - Fork 3
/
jquery-areaselect.css
95 lines (95 loc) · 1.63 KB
/
jquery-areaselect.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
.clearfix{
clear: both;
}
.area-select input{
position: relative;
z-index:0;
}
.area-select input.as-hover{
border-bottom:0;
}
.as-linkle{
cursor:pointer;
}
.as-ctn{
position: absolute;
width: 500px;
height: 250px;
border: solid 1px #eee;
overflow-y: auto;
padding: 15px;
background: #fff;
-moz-box-shadow: 0 0 5px #ddd;
-webkit-box-shadow: 0 0 5px #ddd;
box-shadow: 0 0 5px #ddd;
margin-top: -1px;
z-index:1;
}
.as-tabs{
width: 100%;
height: 25px;
float: left;
border-bottom: 2px solid #edd28b;
overflow: visible;
}
.as-tabs-item{
position: relative;
float: left;
height: 23px;
line-height: 23px;
padding: 0 21px 1px 11px;
margin-right: 3px;
border: 1px solid #ddd;
border-bottom: 0;
color: #005AA0;
text-align: center;
cursor: pointer;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.as-tabs-item-current{
height: 25px;
background-color: #fff;
border: 2px solid #edd28b;
border-bottom: 0;
padding: 0 20px 0 10px;
line-height: 22px;
text-decoration: none;
color: #000;
}
.as-content{
padding-top:5px;
}
.as-content ul{
margin:0;
padding:0;
}
.as-content li{
list-style: none;
}
.as-ctn{
display: none;
}
.as-hover .as-ctn{
display: block;
}
.as-content li{
float: left;
width: 100px;
padding: 5px 0 5px 20px;
clear: none;
min-height: 26px;
text-align: center;
}
.as-content li a{
color:#666;
padding:2px 4px;
}
.as-content li a:hover{
color:#FFF;
background-color: #005AA0;
}
.as-hidden{
display: none;
}