Changeset 1086

Show
Ignore:
Timestamp:
2008-09-10 06:50:20 (2 months ago)
Author:
MaierMan
Message:

Fix selected items color

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/chrome/content/dta/select.js

    r1083 r1086  
    279279 
    280280        getRowProperties: function(idx, prop) { 
    281                 var l = this._links[idx]; 
     281                let l = this._links[idx]; 
    282282                // AppendElement will just accept nsIAtom. 
    283283                // no documentation on devmo, xulplanet though :p 
     
    290290                        prop.AppendElement(this._iconic); 
    291291                } 
     292                let l = this._links[idx]; 
     293                prop.AppendElement(this.getAtom(l.checked)); 
    292294        }, 
    293295 
  • trunk/chrome/skin/common/style.css

    r1068 r1086  
    140140} 
    141141treechildren::-moz-tree-cell-text(selected) { 
    142         color: white !important
     142        color: white
    143143        font-weight: bold; 
    144144} 
  • trunk/chrome/skin/select/style.css

    r1072 r1086  
    114114} 
    115115treechildren::-moz-tree-row(f5) { 
    116         background-color: #DDFFF4 !important; 
    117116} 
    118117treechildren::-moz-tree-row(f5, selected) { 
     
    137136        background-color: #DFC2C2 !important; 
    138137} 
     138treechildren::-moz-tree-cell-text(manuallySelected, selected) { 
     139        font-family: monospace; 
     140        color: black !important; 
     141}        
     142treechildren::-moz-tree-cell-text(manuallySelected, selected), 
     143treechildren::-moz-tree-cell-text(f1, selected), 
     144treechildren::-moz-tree-cell-text(f2, selected), 
     145treechildren::-moz-tree-cell-text(f3, selected), 
     146treechildren::-moz-tree-cell-text(f4, selected), 
     147treechildren::-moz-tree-cell-text(f5, selected), 
     148treechildren::-moz-tree-cell-text(f6, selected), 
     149treechildren::-moz-tree-cell-text(f7, selected), 
     150treechildren::-moz-tree-cell-text(fastFiltered, selected) { 
     151        color: black !important; 
     152}