1 | /* |
---|
2 | Uploadify v3.0.0 |
---|
3 | Copyright (c) 2010 Ronnie Garcia |
---|
4 | |
---|
5 | Permission is hereby granted, free of charge, to any person obtaining a copy |
---|
6 | of this software and associated documentation files (the "Software"), to deal |
---|
7 | in the Software without restriction, including without limitation the rights |
---|
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
---|
9 | copies of the Software, and to permit persons to whom the Software is |
---|
10 | furnished to do so, subject to the following conditions: |
---|
11 | |
---|
12 | The above copyright notice and this permission notice shall be included in |
---|
13 | all copies or substantial portions of the Software. |
---|
14 | |
---|
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
---|
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
---|
21 | THE SOFTWARE. |
---|
22 | */ |
---|
23 | |
---|
24 | .uploadify {margin:0 auto 10px auto} |
---|
25 | |
---|
26 | .uploadifyButton { |
---|
27 | display: block; |
---|
28 | cursor: pointer; |
---|
29 | font-size: 11px; |
---|
30 | font-weight: bold; |
---|
31 | color: #eeeeee; |
---|
32 | padding: 8px 0; |
---|
33 | text-align: center; |
---|
34 | height: 14px; |
---|
35 | width: 100%; |
---|
36 | background-color: #464646; |
---|
37 | -webkit-border-radius:5px; |
---|
38 | -moz-border-radius:5px; |
---|
39 | border-radius:5px; |
---|
40 | letter-spacing:2px; |
---|
41 | } |
---|
42 | .uploadify:hover .uploadifyButton { |
---|
43 | color:#fff; |
---|
44 | background-color: #333; |
---|
45 | cursor:pointer; |
---|
46 | } |
---|
47 | .uploadifyQueueItem { |
---|
48 | background-color: #F5F5F5; |
---|
49 | -webkit-border-radius: 3px; |
---|
50 | -moz-border-radius: 3px; |
---|
51 | border-radius: 3px; |
---|
52 | font: 11px Verdana, Geneva, sans-serif; |
---|
53 | margin-top: 5px; |
---|
54 | max-width: 350px; |
---|
55 | padding: 10px; |
---|
56 | } |
---|
57 | .uploadifyQueueItem .cancel { |
---|
58 | float: right; |
---|
59 | } |
---|
60 | .uploadifyQueueItem .fileName, .uploadifyQueueItem .data { |
---|
61 | float: left; |
---|
62 | } |
---|
63 | .uploadifyQueue .completed { |
---|
64 | background-color: #E5E5E5; |
---|
65 | } |
---|
66 | .uploadifyProgress { |
---|
67 | background-color: #E5E5E5; |
---|
68 | margin-top: 25px; |
---|
69 | height: 3px; |
---|
70 | width: 100%; |
---|
71 | position: relative; |
---|
72 | } |
---|
73 | .uploadifyProgressBar { |
---|
74 | background-color: #0099FF; |
---|
75 | height: 3px; |
---|
76 | width: 1px; |
---|
77 | position: absolute; |
---|
78 | left: 0px; |
---|
79 | } |
---|
80 | .uploadifyError { |
---|
81 | background-color: #FDE5DD !important; |
---|
82 | } |
---|
83 | |
---|
84 | |
---|
85 | /* Piwigo specific */ |
---|
86 | #fileQueue { |
---|
87 | width: 420px; |
---|
88 | max-height: 300px; |
---|
89 | overflow: auto; |
---|
90 | margin: 0 auto 10px auto; |
---|
91 | padding: 5px 0 10px 0; |
---|
92 | } |
---|
93 | |
---|
94 | .uploadifyQueueItem { |
---|
95 | border: 1px solid #666; |
---|
96 | background-color: #444; |
---|
97 | color:#999; |
---|
98 | margin: 5px auto 0 auto; |
---|
99 | padding: 10px; |
---|
100 | width: 350px; |
---|
101 | |
---|
102 | } |
---|
103 | .uploadifyError { |
---|
104 | border: 2px solid #FBCBBC !important; |
---|
105 | background-color: #FDE5DD !important; |
---|
106 | } |
---|
107 | .uploadifyQueueItem .cancel { |
---|
108 | float: right; |
---|
109 | } |
---|
110 | .uploadifyProgress { |
---|
111 | background-color: #333; |
---|
112 | border: 1px solid #666; |
---|
113 | width: 100%; |
---|
114 | } |
---|
115 | .uploadifyProgressBar { |
---|
116 | background-color: #FF3363; |
---|
117 | width: 1px; |
---|
118 | height: 3px; |
---|
119 | } |
---|