urlSelector_wev8.css
2.06 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
.url-selector {
position: relative;
}
.url-selector-arrow {
cursor: pointer;
}
.url-selector input[type="text"]::-ms-value {
margin-right:22px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.url-selector input[type="text"] {
padding-right: 0px !important;
}
}
.url-selector-arrow:before{
content: "\e78e";
font-family: iconfont;
position: absolute;
right: 0px;
line-height: 30px;
top: 50%;
transform: translateY(-50%);
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
padding: 0 5px;
}
.url-selector-arrow.url-selector-arrow-reverse:before {
content: "\e66c";
}
.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;
}