Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
@charset "UTF-8";
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
}