Changeset 2365


Ignore:
Timestamp:
03/29/10 11:41:38 (14 years ago)
Author:
niltonneto
Message:

Ticket #898 - Correção de visualização quando há poucas pastas.

File:
1 edited

Legend:

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

    r2023 r2365  
    3535                var handler_buildQuota = function(data){                         
    3636                        el.appendChild(InfoQuota.buildQuota(data));                      
    37                         el.innerHTML += '<input type="button" value=' + get_lang("Close")+  
     37                        el.innerHTML += '<br><input style="margin-bottom:10px" type="button" value=' + get_lang("Close")+  
    3838                        ' id="InfoQuota_button_close" onClick="InfoQuota.close_window();">';                     
    3939                        _this.showWindow(el); 
     
    4646        {                                                        
    4747                if(! this.win) { 
    48                         div.style.height = "450px"; 
     48                        div.style.height = "350px"; 
    4949                        div.style.width = "450px"; 
    5050                        var title = get_lang("View Quota Usage in Folders");                     
     
    8989                table.style.border="1px solid #CCC"; 
    9090                table.style.marginTop = "10px"; 
    91                 table.width="100%"; 
     91                table.style.width="100%"; 
     92                table.style.height="80%"; 
    9293                table.style.background = "#FFF"; 
    9394                table.cellSpacing = 5; 
     
    101102                thead.style.background = "#FFF"; 
    102103                var tr_thead = document.createElement("TR"); 
    103                 tr_thead.style.fontSize = "12px"; 
     104                tr_thead.style.fontSize = "10pt"; 
     105                tr_thead.style.height = '10px'; 
    104106                tr_thead.style.background = "#3978d6"; 
    105107                tr_thead.style.color = "white"; 
     
    128130                tbody.style.overflowY = "auto"; 
    129131                tbody.style.overflowX = "hidden"; 
    130                 if(!is_ie) 
    131                         tbody.style.height = "350px";            
    132132                tbody.style.width = "50%";               
    133133                var last_folder = 'null'; 
     
    190190                }        
    191191                var tr_tfoot = document.createElement("TR"); 
    192                 tr_tfoot.style.fontSize = "12px";                
     192                tr_tfoot.style.fontSize = "10pt";                
    193193                tr_tfoot.style.color = "#bbb"; 
    194194                tr_tfoot.style.fontWeight = "bold"; 
Note: See TracChangeset for help on using the changeset viewer.