Changeset 5424


Ignore:
Timestamp:
01/25/12 15:26:37 (12 years ago)
Author:
gustavo
Message:

Ticket #2462 - Corrigido bug do firefox 3.6 do cabeçalho de botoes

File:
1 edited

Legend:

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

    r5417 r5424  
    32193219        var tbody_menu_new_message = document.createElement("TBODY"); 
    32203220        var tr_menu_new_message = document.createElement("TR"); 
     3221        tr_menu_new_message.width = "100%"; 
    32213222        var td_menu_new_message = document.createElement("TD"); 
    32223223        //td_menu_new_message.setAttribute("noWrap","true"); 
    32233224        td_menu_new_message.className = "new-message-menu"; 
     3225        td_menu_new_message.width = "100%"; 
    32243226        if ((preferences.save_in_folder == '-1') || (preferences.save_in_folder == '')){ 
    32253227                var option_send = '<button title="Enviar Email" id="send_button_'+ID+'" class="header-button button small" onclick=send_message("'+ID+'","null","null");>'+get_lang("Send")+'</button>'; 
     
    32553257        td_menu_another_adress = document.createElement("TD"); 
    32563258        td_menu_another_adress.id = "another_adress_"+ID; 
    3257         td_menu_another_adress.style.position = "absolute"; 
    3258         td_menu_another_adress.style.right = "10px"; 
     3259        //td_menu_another_adress.style.position = "absolute"; 
     3260        td_menu_another_adress.style.width = "1%"; 
     3261        td_menu_another_adress.setAttribute("noWrap","true"); 
     3262        //td_menu_new_message.setAttribute("noWrap","true"); 
    32593263         
    32603264        tr_menu_new_message.appendChild(td_menu_new_message); 
Note: See TracChangeset for help on using the changeset viewer.