source: trunk/admin/include/uploadify/uploadify.css @ 14168

Last change on this file since 14168 was 11975, checked in by plg, 13 years ago

feature 2410 added: uploadify upgraded from version 2.1.0 to 3.0.0 (still beta,
but said as stable by users on uploadify forums)

bug 2411 fixed: thanks to uploadify 3.0.0, the "Browse" button is now localized
(text in any language)

bug 1653 fixed: if the selected file exceeds the upload_max_size (as defined in
the php.ini), an alert is shown and the file is not added to the queue.

bug 2412 fixed: ability to select GIF files with the Flash Uploader.

  • Property svn:eol-style set to LF
File size: 2.8 KB
Line 
1/*
2Uploadify v3.0.0
3Copyright (c) 2010 Ronnie Garcia
4
5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal
7in the Software without restriction, including without limitation the rights
8to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9copies of the Software, and to permit persons to whom the Software is
10furnished to do so, subject to the following conditions:
11
12The above copyright notice and this permission notice shall be included in
13all copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21THE 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;
39border-radius:5px;
40letter-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}
Note: See TracBrowser for help on using the repository browser.