Ignore:
Timestamp:
05/04/12 18:00:28 (12 years ago)
Author:
gustavo
Message:

Ticket #2676 - Falha ao anexar arquivo no expresso mail

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/prototype/plugins/fileupload/jquery.fileupload-ui.css

    r5341 r6107  
    11@charset 'UTF-8'; 
    22/* 
    3  * jQuery File Upload UI Plugin CSS 5.0.6 
     3 * jQuery File Upload UI Plugin CSS 6.3 
    44 * https://github.com/blueimp/jQuery-File-Upload 
    55 * 
     
    88 * 
    99 * Licensed under the MIT license: 
    10  * http://creativecommons.org/licenses/MIT/ 
     10 * http://www.opensource.org/licenses/MIT 
    1111 */ 
    1212 
    13 .fileupload-buttonbar .ui-button input { 
     13.fileinput-button { 
     14  position: relative; 
     15  overflow: hidden; 
     16  float: left; 
     17  margin-right: 4px; 
     18} 
     19.fileinput-button input { 
    1420  position: absolute; 
    1521  top: 0; 
     
    2026  opacity: 0; 
    2127  filter: alpha(opacity=0); 
    22   -o-transform: translate(250px, -50px) scale(1); 
    2328  -moz-transform: translate(-300px, 0) scale(4); 
    2429  direction: ltr; 
    2530  cursor: pointer; 
    2631} 
    27  
    28 .fileinput-button { 
    29   overflow: hidden; 
     32.fileupload-buttonbar .btn, 
     33.fileupload-buttonbar .toggle { 
     34  margin-bottom: 5px; 
     35} 
     36.files .progress { 
     37  width: 200px; 
     38} 
     39.progress-animated .bar { 
     40  background: url(../img/progressbar.gif) !important; 
     41  filter: none; 
     42} 
     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; 
     50} 
     51.fileupload-processing .fileupload-loading { 
     52  display: block; 
    3053} 
    3154 
    3255/* Fix for IE 6: */ 
    3356*html .fileinput-button { 
    34   padding: 2px 0; 
     57  line-height: 22px; 
     58  margin: 1px -3px 0 0; 
    3559} 
    3660 
    3761/* Fix for IE 7: */ 
    3862*+html .fileinput-button { 
    39   padding: 2px 0; 
     63  margin: 1px 0 0 0; 
    4064} 
    4165 
    42 .fileupload-buttonbar { 
    43   padding: 0.2em 0.4em; 
     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  } 
    4484} 
    45  
    46 .fileupload-buttonbar .ui-button { 
    47   vertical-align: middle; 
    48 } 
    49  
    50 .fileupload-content { 
    51   padding: 0.2em 0.4em; 
    52   border-top-width: 0; 
    53 } 
    54  
    55 .fileupload-content .ui-progressbar { 
    56   width: 200px; 
    57   height: 20px; 
    58 } 
    59  
    60 .fileupload-content .ui-progressbar-value { 
    61   background: url(pbar-ani.gif); 
    62 } 
    63  
    64 .fileupload-content .fileupload-progressbar { 
    65   width: 400px; 
    66   margin: 10px 0; 
    67 } 
    68  
    69 .files { 
    70   margin: 10px 0; 
    71   border-collapse: collapse; 
    72 } 
    73  
    74 .files td { 
    75   padding: 5px; 
    76   border-spacing: 5px; 
    77 } 
    78  
    79 .files img { 
    80   border: none; 
    81 } 
    82  
    83 .files .name { 
    84   padding: 0 10px; 
    85 } 
    86  
    87 .files .size { 
    88   padding: 0 10px 0 0; 
    89   text-align: right; 
    90   white-space: nowrap; 
    91 } 
    92  
    93 .ui-state-disabled .ui-state-disabled { 
    94   opacity: 1; 
    95   filter: alpha(opacity=100); 
    96 } 
    97  
    98 .ui-state-disabled input { 
    99   cursor: default; 
    100 } 
Note: See TracChangeset for help on using the changeset viewer.