Changeset 5725 for trunk


Ignore:
Timestamp:
03/14/12 18:06:53 (12 years ago)
Author:
angelo
Message:

Ticket #2371 - Pesquisa rapida Campo Data e tamanho desalinhados

Location:
trunk/expressoMail1_2/js
Files:
2 edited

Legend:

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

    r5721 r5725  
    936936                document.getElementById("table_resultsearch_"+numBox).style.width = scrollWidth+'px'; 
    937937        syncColumns(); 
     938        //Alinhamento das colunas data e tamanho na pesquisa 
     939        if ( numBox > 0){ 
     940                if (is_mozilla && !is_webkit){ 
     941                        $('#table_message_header_box_'+numBox).attr('style','width:99.5%'); 
     942                }        
     943                else if (is_webkit){ 
     944                        $('#table_message_header_box_'+numBox).removeAttr('style'); 
     945                        $('#table_message_header_box_'+numBox).css('table-layout','auto'); 
     946                } 
     947                else{ 
     948                        $('#table_message_header_box_'+numBox).css('table-layout','auto'); 
     949                } 
     950        } 
     951        $('#table_resultsearch_'+numBox).removeAttr('style'); 
    938952} 
    939953 
  • trunk/expressoMail1_2/js/search.js

    r5717 r5725  
    12141214                 
    12151215                resizeWindow(); 
    1216                 $('#table_resultsearch_'+numBox).removeAttr('style'); 
    12171216                if(typeof(Data.data_gears)=="undefined") 
    12181217                        EsearchE.show_paging( Data['num_msgs'] ); 
Note: See TracChangeset for help on using the changeset viewer.