Changeset 790 for trunk/phpgwapi/js


Ignore:
Timestamp:
05/05/09 15:52:22 (15 years ago)
Author:
niltonneto
Message:

Ticket #475 - Modificação para tornar flexível a utilização de múltiplos templates.

Location:
trunk/phpgwapi/js/dftree
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/phpgwapi/js/dftree/dftree.css

    r2 r790  
    3737/* link */ 
    3838.l { 
    39         padding: 0px 13px 0px 0px; 
     39        background-repeat: no-repeat; 
     40        background-position: left; 
     41        padding: 0 2em; 
    4042        font-weight: bold; 
    4143        font-size: 10px; 
    42         color: #666666; 
     44        color: #4a79b1; 
    4345        text-decoration: none; 
    4446        cursor: pointer; 
     
    5456/* selected link */ 
    5557.sl { 
    56         padding: 0px 13px 0px 0px; 
     58        background-repeat: no-repeat; 
     59        background-position: left; 
     60        padding: 0 2em;  
    5761        font-weight: bold; 
    5862        font-size: 10px; 
    59         color: #0000FF; 
     63        color: #fc6103; 
    6064        text-decoration: none; 
    6165        cursor: pointer; 
  • trunk/phpgwapi/js/dftree/dftree.js

    r709 r790  
    228228                captionSpan.style.backgroundColor = 'white'; 
    229229                captionSpan.style.border = '1px solid black'; 
     230                captionSpan.style.paddingTop = '0px'; 
     231                captionSpan.style.paddingBottom = '0px'; 
    230232        } 
    231233} 
     
    237239                captionSpan = getObjectById("l"+this.id+this._myTree.name); 
    238240                captionSpan.style.backgroundColor = ''; 
    239                 captionSpan.style.border = '1px solid #f7f7f7'; 
     241                captionSpan.style.border = '0px'; 
     242                captionSpan.style.paddingTop = '1px'; 
     243                captionSpan.style.paddingBottom = '1px'; 
    240244        } 
    241245} 
     
    326330        spanL.onmouseover = function () { _this._onMouseOver(); }; 
    327331        spanL.onmouseout = function () { _this._onMouseOut(); }; 
    328         spanL.style.border = '1px solid #f7f7f7'; 
     332//      spanL.style.border = '1px solid #f7f7f7'; 
    329333        spanL.innerHTML = this.caption; 
    330334        //spanL.style.border = '1px solid red'; 
Note: See TracChangeset for help on using the changeset viewer.