hjg
2024-10-30 8cf23534166c07e711aac2a25911ada317ba01f0
提交 | 用户 | 时间
58d006 1 @charset "UTF-8";
A 2 /*
3  * jQuery File Upload UI Plugin CSS 8.8.1
4  * https://github.com/blueimp/jQuery-File-Upload
5  *
6  * Copyright 2010, Sebastian Tschan
7  * https://blueimp.net
8  *
9  * Licensed under the MIT license:
10  * http://www.opensource.org/licenses/MIT
11  */
12
13 .fileinput-button {
14   position: relative;
15   overflow: hidden;
16 }
17 .fileinput-button input {
18   position: absolute;
19   top: 0;
20   right: 0;
21   margin: 0;
22   opacity: 0;
23   filter: alpha(opacity=0);
24   transform: translate(-300px, 0) scale(4);
25   font-size: 23px;
26   direction: ltr;
27   cursor: pointer;
28 }
29 .fileupload-buttonbar .btn,
30 .fileupload-buttonbar .toggle {
31   margin-bottom: 5px;
32 }
33 .progress-animated .progress-bar,
34 .progress-animated .bar {
35   background: url(../img/progressbar.gif) !important;
36   filter: none;
37 }
38 .fileupload-loading {
39   float: right;
40   width: 32px;
41   height: 32px;
42   background: url(../img/loading.gif) center no-repeat;
43   background-size: contain;
44   display: none;
45 }
46 .fileupload-processing .fileupload-loading {
47   display: block;
48 }
49 .files audio,
50 .files video {
51   max-width: 300px;
52 }
53
54 @media (max-width: 767px) {
55   .fileupload-buttonbar .toggle,
56   .files .toggle,
57   .files .btn span {
58     display: none;
59   }
60   .files .name {
61     width: 80px;
62     word-wrap: break-word;
63   }
64   .files audio,
65   .files video {
66     max-width: 80px;
67   }
68 }