Ignore:
Timestamp:
01/26/12 12:53:16 (12 years ago)
Author:
angelo
Message:

Ticket #2456 - Ajustar tamanho da tela de visualizacao de pastas

File:
1 edited

Legend:

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

    r5426 r5430  
    9696                table.style.background = "#FFF"; 
    9797                table.cellSpacing = 5; 
    98                 table.cellPadding = 0;                           
     98                table.cellPadding = 0; 
     99                if (is_ie) 
     100                        table.setAttribute('class','table-info-quota'); 
     101                                                 
    99102                var thead = document.createElement("THEAD"); 
    100103                var tbody = document.createElement("TBODY"); 
     
    106109                var tr_thead = document.createElement("TR"); 
    107110                tr_thead.style.fontSize = "10pt"; 
    108                 tr_thead.style.height = '10px'; 
     111                tr_thead.style.height = '15px'; 
    109112                tr_thead.style.background = "#3978d6"; 
    110113                tr_thead.style.color = "white"; 
     
    158161                        td01.width="40%"; 
    159162                        td01.style.maxWidth = max_len_permited + "px"; 
    160                         td01.style.borderBottom = "1px dashed #DDD";             
    161                         td01.setAttribute('class','td-info-quota'); 
    162                          
     163                        td01.style.borderBottom = "1px dashed #DDD"; 
     164                        td01.setAttribute('class','td-info-quota');                                              
    163165                        td02 = document.createElement("TD"); 
    164166                        td02.align="center"; 
     
    211213                th_tfoot.innerHTML = get_lang("You are currently using %1 (%2%).",borkb(data.quota_root.quota_used*1024), data.quota_root.quota_percent); 
    212214                tr_tfoot.appendChild(th_tfoot);          
     215                 
    213216                return table; 
    214217        } 
Note: See TracChangeset for help on using the changeset viewer.