PluginProbe
Embed Any Document – Embed PDF, Word, PowerPoint and Excel Files / trunk
Embed Any Document – Embed PDF, Word, PowerPoint and Excel Files vtrunk
2.7.13 2.7.6 trunk 1.0.1 1.1 1.1.1 2.1 2.2 2.2.1 2.2.2 2.2.4 2.2.5 2.3 2.7.0 2.7.1 2.7.10 2.7.11 2.7.12 2.7.3 2.7.4 2.7.5 2.7.7 2.7.8
embed-any-document / css / embed.css

embed.css in Embed Any Document – Embed PDF, Word, PowerPoint and Excel Files trunk, at css/embed.css

485 lines 8.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 #embed-popup-wrap {
2 display: none;
3 width: 85%;
4 margin: 0 auto;
5 }
6
7 .ead-popup-on #TB_overlay {
8 z-index: 200000 !important;
9 }
10
11 .ead-popup-on #TB_window {
12 background: none;
13 box-shadow: none;
14 -webkit-box-shadow: none;
15 z-index: 200001 !important;
16 }
17
18 .ead-popup-on .fw-modal .media-modal{
19 z-index: 200001 !important;
20 }
21
22 .ead-popup-on #TB_ajaxContent {
23 text-align: center;
24 }
25
26 .ead-popup-on #TB_ajaxContent:after {
27 content: "";
28 display: inline-block;
29 width: 1px;
30 height: 100%;
31 vertical-align: middle;
32 }
33
34 #embed-popup {
35 position: relative;
36 width: 99%;
37 max-width: 1030px;
38 background: #fff;
39 -moz-box-sizing: border-box;
40 -webkit-box-sizing: border-box;
41 box-sizing: border-box;
42 display: inline-block;
43 vertical-align: middle;
44 -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
45 -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
46 box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
47 text-align: left;
48 }
49
50 #embed-popup li::before {
51 display: none;
52 }
53
54 .ead-popup-header {
55 padding: 20px 30px;
56 }
57
58 .ead-popup-header h1 {
59 margin: 0;
60 line-height: 1.3;
61 }
62
63 .ead-section {
64 padding: 0 30px;
65 border-top: 1px solid #ebebeb;
66 }
67
68 .ead-action-panel {
69 padding: 20px 30px;
70 background: #f5f5f5;
71 border-top: 1px solid #ebebeb;
72 }
73
74 ul.ead-options {
75 padding: 30px 0;
76 overflow: hidden;
77 margin: 0px;
78 }
79
80 .ead-options li {
81 float: left;
82 width: 20%;
83 padding: 0 10px;
84 -moz-box-sizing: border-box;
85 -webkit-box-sizing: border-box;
86 box-sizing: border-box;
87 }
88
89 .ead-options li a {
90 display: block;
91 text-decoration: none;
92 color: rgb(33, 33, 33);
93 }
94
95 .ead-options li span {
96 border: 1px solid #dfdfdf;
97 -webkit-border-radius: 4px;
98 border-radius: 4px;
99 display: block;
100 padding: 44px 10px;
101 text-align: center;
102 position: relative;
103 -webkit-transition: all 0.3s ease;
104 -moz-transition: all 0.3s ease;
105 -ms-transition: all 0.3s ease;
106 -o-transition: all 0.3s ease;
107 transition: all 0.3s ease;
108 }
109
110 .ead-options li span:hover {
111 -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
112 box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
113 border-color: #ccc;
114 }
115
116 .ead-options li img {
117 display: block;
118 margin: 0 auto 10px;
119 max-height: 50px;
120 }
121
122 .ead-options li span span.overlay {
123 border: none;
124 -webkit-border-radius: 0;
125 border-radius: 0;
126 padding: 0;
127 width: 100%;
128 height: 100%;
129 position: absolute;
130 left: 0;
131 top: 0;
132 background: rgba(255, 255, 255, 0.7);
133 }
134
135 .ead-options .overlay strong {
136 display: inline-block;
137 max-width: 97%;
138 vertical-align: middle;
139 opacity: 0;
140 -webkit-transition: all 0.3s ease;
141 -moz-transition: all 0.3s ease;
142 -ms-transition: all 0.3s ease;
143 -o-transition: all 0.3s ease;
144 transition: all 0.3s ease;
145 }
146
147 .ead-options li span:hover {
148 box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
149 -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
150 }
151
152 .ead-options li:hover .overlay strong {
153 opacity: 1;
154 }
155
156 .ead-options .overlay i {
157 display: inline-block;
158 height: 100%;
159 width: 1px;
160 vertical-align: middle;
161 }
162
163 .upload-success {
164 min-height: 70px;
165 overflow: hidden;
166 }
167
168 .upload-success .inner {
169 padding: 30px 10px;
170 -moz-box-sizing: border-box;
171 -webkit-box-sizing: border-box;
172 box-sizing: border-box;
173 float: left;
174 width: 20%;
175 }
176
177 .ead-url-box {
178 display: none;
179 padding: 20px;
180 margin: 30px 0;
181 }
182
183 .addurl-box.ead-url-box {
184 margin: 10px 0;
185 padding: 20px 0;
186 }
187
188 a.go-back {
189 display: inline-block;
190 margin-top: 20px;
191 text-decoration: none;
192 }
193
194 .ead-url-box label {
195 display: block;
196 font-size: 12px;
197 margin-bottom: 5px;
198 }
199
200 .uploaded-doccument {
201 padding: 75px 0 5px;
202 color: #454545;
203 font-size: 13px;
204 word-wrap: break-word;
205 text-align: center;
206 }
207
208 .uploaded-doccument.ead-link {
209 background: url(../images/icon-link.png) no-repeat center 5px / 36px 49px;
210 }
211
212 .uploaded-doccument.ead-upload {
213 background: url(../images/icon-upload.png) no-repeat center 5px / 54px 49px;
214 }
215
216 .uploaded-doccument.ead-dropbox {
217 background: url(../images/icon-dropbox.png) no-repeat center 5px / 51px 49px;
218 }
219
220 .uploaded-doccument.ead-drive {
221 background: url(../images/icon-drive.png) no-repeat center 5px / 48px 49px;
222 }
223
224 .uploaded-doccument.ead-box {
225 background: url(../images/icon-box.png) no-repeat center 5px / 54px 49px;
226 }
227
228 .wp-core-ui .button#adv-options {
229 float: right;
230 height: 40px;
231 line-height: 38px;
232 font-size: 13px;
233 padding: 0 20px;
234 }
235
236 .uploaded-doccument p {
237 font-weight: bold;
238 font-size: 16px;
239 margin: 0 0 3px;
240 }
241
242 input.input-group-text {
243 padding: 5px 8px;
244 height: 40px;
245 min-width: 88%;
246 }
247
248 .wp-core-ui .button-primary.input-group-btn {
249 padding: 5px 10px;
250 height: 40px;
251 }
252
253 .advanced-options {
254 padding: 30px;
255 -moz-box-sizing: border-box;
256 -webkit-box-sizing: border-box;
257 box-sizing: border-box;
258 float: left;
259 width: 80%;
260 border-left: 1px solid #ebebeb;
261 }
262
263 .advanced-options h3 {
264 margin-top: 0px
265 }
266
267 .advanced-options h3 span {
268 color: #aaa;
269 font-weight: normal;
270 }
271
272 .ead-popup-on .media-modal {
273 z-index: 200003 !important;
274 }
275
276 .wp-core-ui .ead-btn.button-large {
277 padding: 0 30px;
278 height: 54px;
279 line-height: 52px;
280 font-size: 16px;
281 }
282
283 .wp-core-ui .ead-btn.button-medium {
284 padding: 0 15px;
285 height: 36px;
286 line-height: 34px;
287 font-size: 14px;
288 }
289
290 .text-center {
291 text-align: center;
292 }
293
294 .ead-popup-on .ead-close {
295 position: absolute;
296 right: 30px;
297 top: 30px;
298 font-weight: bold;
299 background: url(../images/icon-close.png) !important;
300 width: 22px;
301 height: 22px;
302 display: block;
303 text-indent: -9999999px;
304 border: none;
305 cursor: pointer;
306 opacity: 0.65;
307 padding: 0;
308 }
309
310 .mfp-close:hover {
311 opacity: 1;
312 }
313
314 .mfp-close .upload-success {
315 display: none;
316 }
317
318 #embed-message {
319 margin-top: 20px;
320 }
321
322 div.awsm-error,
323 div.awsm-updated {
324 margin: 5px 0 2px;
325 border-width: 1px 1px 1px 4px;
326 border-style: solid;
327 -webkit-border-radius: 4px;
328 border-radius: 4px;
329 }
330
331 div.awsm-updated {
332 background-color: #fff;
333 border-color: #eee #eee #eee #7ad03a;
334 padding: 1px 12px;
335 }
336
337 div.awsm-error {
338 background: none repeat scroll 0 0 #fff;
339 border-color: #eee #eee #eee #dd3d36;
340 padding: 1px 12px;
341 }
342
343 div.awsm-error p,
344 div.awsm-updated p {
345 margin: 0.5em 0;
346 padding: 2px;
347 }
348
349 .hidden {
350 display: none;
351 }
352
353 .mceActionPanel {
354 margin: 0;
355 }
356
357 .option-fields {
358 list-style-type: none;
359 margin: 0;
360 padding: 20px 0 0;
361 }
362
363 .option-fields li {
364 padding-bottom: 15px;
365 overflow: hidden;
366 margin-bottom: 0;
367 }
368
369 .option-fields label {
370 display: block;
371 margin-bottom: 5px;
372 font-weight: bold;
373 }
374
375 .option-fields li.checkbox input {
376 float: left;
377 margin: 2px 10px 0 0;
378 }
379
380 .option-fields li.checkbox label {
381 float: left;
382 margin: 0 0 0;
383 font-weight: normal;
384 }
385
386 .f-left {
387 float: left;
388 }
389
390 .option-fields .f-left {
391 margin-right: 25px;
392 max-width: 160px;
393 }
394
395 .option-fields .f-left input,
396 .option-fields .f-left select {
397 margin-bottom: 10px;
398 }
399
400 .option-fields .f-left select {
401 width: 100%;
402 }
403
404 #ead-download-text input {
405 width: 100px;
406 }
407
408 .option-fields .f-left.last {
409 margin: 0;
410 }
411
412 .clear {
413 clear: both;
414 }
415
416 .input-small {
417 width: 60px;
418 }
419
420 .ead-url-box .urlerror {
421 border-color: #D95B5B;
422 -webkit-box-shadow: 0 0 2px rgba(190, 30, 30, 0.8);
423 box-shadow: 0 0 2px rgba(190, 30, 30, 0.8);
424 }
425
426 .picker-dialog {
427 z-index: 20000091 !important;
428 }
429
430 .picker-dialog-bg {
431 z-index: 20000090 !important;
432 }
433
434 .ead-popon #adminmenuwrap {
435 z-index: 999 !important;
436 }
437
438 @media (max-width:915px) {
439 .ead-options li {
440 width: 33.33%;
441 padding-bottom: 20px;
442 margin-bottom: 0;
443 }
444 .ead-popup-on #TB_window {
445 background: #fff;
446 -webkit-box-shadow: 0 2px 25px #000;
447 -moz-box-shadow: 0 2px 25px #000;
448 box-shadow: 0 2px 25px #000;
449 }
450 #embed-popup {
451 box-shadow: none;
452 -webkit-box-shadow: none;
453 }
454 }
455
456 @media (max-width:700px) {
457 .ead-section {
458 padding: 0;
459 }
460 .upload-success .inner {
461 width: 100%;
462 }
463 .advanced_options {
464 width: 100%;
465 border-left: none;
466 border-top: 1px solid #ebebeb;
467 }
468 }
469
470 @media (max-width:600px) {
471 .ead-options li {
472 width: 50%;
473 }
474 #ead_downloadc select,
475 #new_provider select {
476 width: 100%;
477 }
478 }
479
480 @media (max-width:440px) {
481 .ead-options li {
482 width: 100%;
483 }
484 }
485