urlSelector_wev8.css
1.73 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
.url-selector-arrow{
width: 20px;
height: 20px;
position: absolute;
top: 50%;
right: 2px;
background: url(/mobilemode/images/homepage/homepage_bottom_wev8.jpg);
cursor: pointer;
margin: 0px !important;
background-position: center;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
}
.url-selector-panel{
margin-bottom: 0px;
width: 300px;
vertical-align: top;
position: fixed;
border-radius: 0 0 3px 3px;
box-shadow: 0px 2px 5px 3px rgba(0,0,0,0.1);
background: #fff;
display: none;
overflow: hidden;
height: 240px;
z-index: 2147483632;
box-sizing: content-box;
top: 302px;
left: 547px;
}
.url-selector-panel-search {
padding: 10px 10px 2px 10px;
}
.url-selector-panel-search input {
display: block;
width: 100%;
height: 28px;
padding: 3px 8px;
font-size: 12px;
line-height: 1.42857143;
color: #666;
background-color: #fff;
background-image: none;
border: 1px solid #aaa;
border-radius: 3px;
box-sizing: border-box;
outline: none;
}
.url-selector-panel-content {
overflow-y: auto;
overflow-x: hidden;
height: calc(100% - 40px);
}
.url-selector-panel-content ul{
list-style: none;
margin: 0px;
padding: 0px;
}
.url-selector-panel-content ul li{
padding: 8px 12px;
position: relative;
cursor: pointer;
font-size: 12px;
}
.url-selector-panel-content ul li:after{
content: '';
height: 0px;
position: absolute;
left: 10px;
right: 12px;
bottom: 0px;
border-bottom: 1px dotted #ccc;
}
.url-selector-panel-content ul li:HOVER, .url-selector-panel-content ul li.selected{
background-color: #007aff;
color: #fff;
}
.url-selector-panel-content ul li.not-match{
display: none;
}