service.commonbrowser_wev8.css
4.26 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
.common-browser-container.page-content{background-color:#fff;}
.common-browser-container .main-container,
.common-browser-container .content-container{
position: absolute;
z-index: 1;
top: 0px;
left: 0px;
bottom: 0px;
width: 100%;
overflow: hidden;
}
.common-browser-container.multi .main-container{
bottom: 50px;
}
.common-browser-container .content-container{
top: 44px;
}
.common-browser-container .list-wrap{
position: absolute;
top: 0px;
left: 0px;
bottom: 0px;
width: 100%;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
transition: transform 0.3s;
-webkit-transition: -webkit-transform 0.3s;
transition-delay: 0.1s;
-webkit-transition-delay: 0.1s;
}
.common-browser-container .wev-refreshing .list-wrap{
transform: translate3d(0px, 50px, 0px);
-webkit-transform: translate3d(0px, 50px, 0px);
}
.common-browser-container .wev-table-view-cell{
padding: 13px 15px;
}
.common-browser-container .wev-table-view-cell > a:not(.wev-btn){
margin: -13px -15px;
}
.common-browser-container.single .wev-table-view-cell.selected > a:not(.wev-btn){
background-image: url(/mobilemode/mobile/images/plugin/browser/checked.png);
background-repeat: no-repeat;
background-position: right 10px center;
background-size: 18px 14px;
}
.common-browser-container.multi .wev-table-view-cell > a:not(.wev-btn){
background-image: url(/mobilemode/mobile/images/plugin/browser/UnCheck.png);
background-repeat: no-repeat;
background-position: 11px center;
background-size: 24px;
padding-left: 40px;
}
.common-browser-container.multi .wev-table-view-cell.selected > a:not(.wev-btn){
background-image: url(/mobilemode/mobile/images/plugin/browser/Check.png);
}
.common-browser-container .wev-table-view .wev-media-body{
line-height: 21px;
word-break: break-all;
}
.common-browser-container .wev-ellipsis{
width: inherit;
}
.common-browser-container .result-container{
position: absolute;
left: 0px;
bottom: 0px;
height: 50px;
width: 100%;
background-color: #f2f5f7;
z-index: 3;
box-sizing: border-box;
border-top: 1px solid #f0f0f0;
padding-right: 110px;
overflow: hidden;
display: none;
}
.common-browser-container .result-container .ok-btn,
.common-browser-container .result-container .result-btn{
background-color: #fa8505;
color: #fff;
height: 40px;
line-height: 40px;
padding: 0px 16px;
position: absolute;
right: 5px;
top: 5px;
font-size: 14px;
border-radius: 4px;
}
.common-browser-container .result-container .result-btn{
left: 5px;
right: auto;
background-color: #aaa;
display: none;
}
.common-browser-container.multi .result-container{
display: block;
}
.common-browser-container .selected-container{
position: fixed;
z-index: 2;
top: 0;
left: 0;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
display: none;
}
.common-browser-container .selected-mark{
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
background-color: #000;
opacity: 0;
z-index: 1;
-webkit-transition: opacity .282s ease-in-out;
transition: opacity .282s ease-in-out;
}
.common-browser-container .selected-mark.show{
opacity: 0.4;
}
.common-browser-container .selected-content {
position: absolute;
left: 0px;
bottom: 0px;
height: 65%;
width: 100%;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
z-index: 2;
box-sizing: border-box;
overflow: hidden;
background-color: #fff;
}
.common-browser-container .selected-content.hide{
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.common-browser-container .selected-content label{
display: block;
background-color: #efeff4;
height: 32px;
}
.common-browser-container .selected-content .del-btn{
position: absolute;
top: 0px;
right: 0px;
font-size: 14px;
line-height: 32px;
padding: 0px 10px 0px 20px;
color: #ff0000;
}
.common-browser-container .selected-content .select-all-btn{
position: absolute;
top: 0px;
left: 0px;
font-size: 14px;
line-height: 32px;
padding: 0px 20px 0px 10px;
color: #666;
}
.common-browser-container .selected-content .list-wrap{
top: 32px;
bottom: 50px;
}