service.searchbox.less
2.11 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
.show_hide_searchbox.out{
animation-name: show_hide_searchbox;
z-index: 0 !important;
}
.show_hide_searchbox.in{
animation-name: show_hide_searchbox;
z-index: 1 !important;
}
@keyframes show_hide_searchbox {
from { transform: translateY(0%); }
to { transform: translateY(0%); }
}
.page-searchbox.page-content{background-color:#fff;}
.page-searchbox.page-content .wev-search{
padding: 8px 5px;
}
.page-searchbox.page-content .wev-search-inner{
margin-left:5px;
margin-right: 5px;
}
.page-searchbox.page-content .wev-scan-btn{
position: absolute;
background-image: url(/mobilemode/mobile/images/plugin/scan.png);
background-repeat: no-repeat;
background-size: 16px;
background-position: center;
top: 0px;
right: 0px;
width: 34px;
height: 100%;
z-index: 3;
display: none;
}
.wev-has-value .wev-scan-btn {
display: none !important;
}
.page-searchbox.page-content .wev-searchbox-btn-wrap div.btn{
font-size: 14px;
color: #666;
}
.page-searchbox.page-content .wev-history{
position: absolute;
top: 44px;
bottom: 0;
left: 0;
right: 0;
color: #999;
font-size: 14px;
overflow: hidden;
}
.page-searchbox.page-content .wev-history .history-header{
margin-left: 12px;
}
.page-searchbox.page-content .wev-history .history-header p{
float: left;
padding:0;
margin:0;
height: 40px;
line-height: 40px;
color:#666;
}
.page-searchbox.page-content .wev-history .history-header i{
float: right;
background-image: url(/mobilemode/mobile/images/plugin/delete.png);
background-repeat: no-repeat;
background-size: 16px;
background-position: center;
height: 40px;
width: 40px;
}
.page-searchbox.page-content .wev-history .history-content{
position: absolute;
top: 40px;
left: 12px;
right: 12px;
bottom: 0;
overflow-x: hidden;
overflow-y: auto;
}
.page-searchbox.page-content .wev-history .btn{
margin: 5px 10px 5px 0px;
background-color: #efeff4;
color: #666;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%;
box-sizing: border-box;
}