Ignore:
Timestamp:
Aug 19, 2011, 6:04:43 PM (13 years ago)
Author:
plg
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/uploadify/uploadify.css

    r11966 r11975  
    11/*
    2 Uploadify v2.1.0
    3 Release Date: August 24, 2009
    4 
    5 Copyright (c) 2009 Ronnie Garcia, Travis Nickels
     2Uploadify v3.0.0
     3Copyright (c) 2010 Ronnie Garcia
    64
    75Permission is hereby granted, free of charge, to any person obtaining a copy
     
    2321THE SOFTWARE.
    2422*/
     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 */
    2586#fileQueue {
    2687        width: 420px;
     
    50111        background-color: #333;
    51112        border: 1px solid #666;
    52         margin-top: 10px;
    53113        width: 100%;
    54114}
Note: See TracChangeset for help on using the changeset viewer.