Changeset 6124


Ignore:
Timestamp:
05/08/12 09:19:07 (12 years ago)
Author:
gustavo
Message:

Ticket #2676 - Falha ao anexar arquivo no expresso mail

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/draw_api.js

    r6123 r6124  
    37693769            fileUploadMSG.find(' .in-progress:first').remove(); 
    37703770                } 
    3771         }).css({"height" : "20px", "width": "100px", "border-width": "0 0 0px 0px", "-moz-transform" : "none","-o-transform" : 'none'}) 
    3772         .end().end().filter(".message-attach-link").click(function(){ 
     3771        }).css({ 
     3772                "height" : "20px",  
     3773                "width": (is_webkit ? "205px" : "100px"),  
     3774                "border-width": "0 0 0px 0px",  
     3775                "-moz-transform" : "rotate(-180deg) translate(-147px, -0.5px) scale(1.1)",  
     3776                "-webkit-transform" : "rotate(-180deg) translate(-104px, 0px)" 
     3777        }).end().end().filter(".message-attach-link").click(function(){ 
    37733778                jQuery('#message-attach-dialog').html(DataLayer.render("../prototype/modules/attach_message/attach_message.ejs", {})); 
    37743779                $( "#mailpreview_container span.ui-icon-close" ).click(); 
  • trunk/prototype/modules/mail/templates/attachment.ejs

    r6107 r6124  
    22        <div class="row fileupload-buttonbar"> 
    33                <div class="button-files-upload"> 
    4                         <<%= is_webkit ? 'button' : 'span style="height: 22px;"' %>  class="fileinput-button button small"> 
    5                                 <span style="margin-top: 4px;">Anexar arquivos</span> 
    6                                 <INPUT type="file" id="fileInput<%=data.ID%>" name="files[]" multiple style="cursor:pointer;"></INPUT> 
     4                        <<%= is_webkit ? 'button' : 'span style="height: 22px; cursor:pointer;"' %>  class="fileinput-button button small"> 
     5                                <span style="margin-top: 4px; cursor:pointer;"><i class="icon-plus icon-white"></i>Anexar arquivos</span> 
     6                                <INPUT type="file" id="fileInput<%=data.ID%>" name="files[]" multiple></INPUT> 
    77                        </<%= is_webkit ? 'button' : 'span' %>> 
    88                        <button class="message-attach-link button small"> 
  • trunk/prototype/modules/mail/templates/attachment_add_itemlist.ejs

    r6107 r6124  
    33                <span title="<%=data.file.fullFileName%>" class="archive-attach name"><%=data.file.fileName%></span> 
    44                <span class="archive-attach size"><%=data.file.fileSize%></span> 
    5                 <button type="button" style="margin-bottom: -4px;" class="button close tiny upload delete-upload" title="Deletar">Deletar</button> 
     5                <button type="button" style="margin-bottom: -4px; <%= is_webkit || is_ie ? '' : 'top : 7px;'%>" class="button close tiny upload delete-upload" title="Deletar">Deletar</button> 
    66                <span class="status-upload"></span> 
    77                <%if(data.file.error){%> 
     
    1313                <%}%> 
    1414                <label class="fileinput-button new"></label> 
    15                  
    1615    </p> 
    1716</li> 
Note: See TracChangeset for help on using the changeset viewer.