hjg
2024-07-09 30304784e82d4bba24121328da8eb8490aec4f4f
提交 | 用户 | 时间
58d006 1 @charset "UTF-8";
A 2 /*
3  * jQuery File Upload Plugin CSS 1.3.0
4  * https://github.com/blueimp/jQuery-File-Upload
5  *
6  * Copyright 2013, 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   -ms-filter: 'alpha(opacity=0)';
24   font-size: 200px;
25   direction: ltr;
26   cursor: pointer;
27 }
28
29 /* Fixes for IE < 8 */
30 @media screen\9 {
31   .fileinput-button input {
32     filter: alpha(opacity=0);
33     font-size: 100%;
34     height: 100%;
35   }
36 }