Changeset 5430


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

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

Location:
trunk/expressoMail1_2
Files:
2 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        } 
  • trunk/expressoMail1_2/templates/default/main.css

    r5426 r5430  
    7171} 
    7272 
     73.table-info-quota{ 
     74        table-layout: fixed; 
     75} 
     76 
    7377.td-info-quota{ 
    74         text-overflow: ellipsis; 
    75         overflow:       hidden;  
     78        white-space: nowrap; 
     79        overflow:       hidden; 
     80        text-overflow: ellipsis;         
    7681} 
    7782 
     
    176181} 
    177182 
    178 .menu-sel{ 
     183.menu-sel{    
    179184    text-decoration: none; 
    180185    text-align: center; 
     
    191196    -webkit-border-radius: 9px 9px 0px 0px; 
    192197    border-radius: 9px 9px 0px 0px; 
    193     cursor: pointer;     
    194 } 
     198    cursor: pointer; 
     199 } 
     200  
    195201.menu{ 
    196202    text-decoration: none; 
Note: See TracChangeset for help on using the changeset viewer.