source: trunk/prototype/plugins/fileupload/jquery.fileupload-ui.css @ 6107

Revision 6107, 1.5 KB checked in by gustavo, 12 years ago (diff)

Ticket #2676 - Falha ao anexar arquivo no expresso mail

RevLine 
[5341]1@charset 'UTF-8';
2/*
[6107]3 * jQuery File Upload UI Plugin CSS 6.3
[5341]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:
[6107]10 * http://www.opensource.org/licenses/MIT
[5341]11 */
12
[6107]13.fileinput-button {
14  position: relative;
15  overflow: hidden;
16  float: left;
17  margin-right: 4px;
18}
19.fileinput-button input {
[5341]20  position: absolute;
21  top: 0;
22  right: 0;
23  margin: 0;
24  border: solid transparent;
25  border-width: 0 0 100px 200px;
26  opacity: 0;
27  filter: alpha(opacity=0);
28  -moz-transform: translate(-300px, 0) scale(4);
29  direction: ltr;
30  cursor: pointer;
31}
[6107]32.fileupload-buttonbar .btn,
33.fileupload-buttonbar .toggle {
34  margin-bottom: 5px;
[5341]35}
[6107]36.files .progress {
[5341]37  width: 200px;
38}
[6107]39.progress-animated .bar {
40  background: url(../img/progressbar.gif) !important;
41  filter: none;
[5341]42}
[6107]43.fileupload-loading {
44  position: absolute;
45  left: 50%;
46  width: 128px;
47  height: 128px;
48  background: url(../img/loading.gif) center no-repeat;
49  display: none;
[5341]50}
[6107]51.fileupload-processing .fileupload-loading {
52  display: block;
[5341]53}
54
[6107]55/* Fix for IE 6: */
56*html .fileinput-button {
57  line-height: 22px;
58  margin: 1px -3px 0 0;
[5341]59}
60
[6107]61/* Fix for IE 7: */
62*+html .fileinput-button {
63  margin: 1px 0 0 0;
[5341]64}
65
[6107]66@media (max-width: 480px) {
67  .files .btn span {
68    display: none;
69  }
70  .files .preview * {
71    width: 40px;
72  }
73  .files .name * {
74    width: 80px;
75    display: inline-block;
76    word-wrap: break-word;
77  }
78  .files .progress {
79    width: 20px;
80  }
81  .files .delete {
82    width: 60px;
83  }
[5341]84}
Note: See TracBrowser for help on using the repository browser.