Changeset 5767


Ignore:
Timestamp:
03/20/12 18:14:24 (12 years ago)
Author:
cristiano
Message:

Ticket #2497 - icone de concluido e diminuição de espaçamento

Location:
trunk
Files:
3 edited

Legend:

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

    r5765 r5767  
    42664266                                if(newAttach.rollback !== false) 
    42674267                                { 
    4268                                     fileUploadMSG.find('.in-progress:first').parents('p').append('<input type="hidden" name="fileId[]" value="'+newAttach['mailAttachment'][0][0].id+'"/>'); 
     4268                                    fileUploadMSG.find('.in-progress:first').parents('p').append('<input type="hidden" name="fileId[]" value="'+newAttach['mailAttachment'][0][0].id+'"/>').find('.status-upload').addClass('ui-icon ui-icon-check'); 
    42694269                                    addAttachment(ID,newAttach['mailAttachment'][0][0].id); 
    42704270                                } 
     
    42794279                     
    42804280                } 
    4281         }).find('[name="files[]"]').css({"height" : "20px", "width": "100px", "border-width": "0 0 0px 0px", "-moz-transform" : "none"}); 
     4281        }).find('[name="files[]"]').css({"height" : "20px", "width": "100px", "border-width": "0 0 0px 0px", "-moz-transform" : "none","-o-transform" : 'none'}); 
    42824282 
    42834283       fileUploadMSG.find("span.message-attach-link").click(function(event){ 
     
    43124312                                                        attach.fileSize = formatBytes(onceOpenedMessages[folder_name][message_number].size); 
    43134313                                                        var upload = $(DataLayer.render("../prototype/modules/mail/templates/attachment_add_itemlist.ejs", {file : attach})); 
    4314                                                         upload.find('.status-upload').remove(); 
     4314                                                        upload.find('.status-upload').addClass('ui-icon ui-icon-check'); 
    43154315                                                        upload.find('.in-progress').remove();  
    43164316                                                        upload.append('<input type="hidden" name="fileId[]" value=\''+idATT+'\'/>'); 
  • trunk/library/ckeditor/plugins/expresso/plugin.js

    r5706 r5767  
    171171                                if(newAttach.rollback !== false) 
    172172                                { 
    173                                     fileUploadMSG.find('.in-progress:first').parents('p').append('<input type="hidden" name="fileId[]" value="'+newAttach['mailAttachment'][0][0].id+'"/>'); 
     173                                    fileUploadMSG.find('.in-progress:first').parents('p').append('<input type="hidden" name="fileId[]" value="'+newAttach['mailAttachment'][0][0].id+'"/>').find('.status-upload').addClass('ui-icon ui-icon-check'); 
    174174                                    addAttachment(ID,newAttach['mailAttachment'][0][0].id); 
    175175                                    var content_body  = RichTextEditor.getData('body_'+ID); 
  • trunk/prototype/modules/mail/templates/attachment_add_itemlist.ejs

    r5604 r5767  
    1  
    2         <p class="input-group archive-info" style="margin: 0px 0 !important;">           
    3                 <a id="<%=data.file.id%>" class="download file"><span title="<%=data.file.fullFileName%>" class="archive-attach name"><%=data.file.fileName%></span></a> 
     1        <p class="input-group archive-info" style="margin: 0px 0 !important; height: 17px">              
     2                <span title="<%=data.file.fullFileName%>" class="archive-attach name"><%=data.file.fileName%></span> 
    43                <span class="archive-attach size"><%=data.file.fileSize%></span> 
    54                <button type="button" class="button close tiny upload delete-upload" title="Deletar">Deletar</button> 
Note: See TracChangeset for help on using the changeset viewer.