Changeset 1086
- Timestamp:
- 2008-09-10 06:50:20 (2 months ago)
- Files:
-
- trunk/chrome/content/dta/select.js (modified) (2 diffs)
- trunk/chrome/skin/common/style.css (modified) (1 diff)
- trunk/chrome/skin/select/style.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/dta/select.js
r1083 r1086 279 279 280 280 getRowProperties: function(idx, prop) { 281 varl = this._links[idx];281 let l = this._links[idx]; 282 282 // AppendElement will just accept nsIAtom. 283 283 // no documentation on devmo, xulplanet though :p … … 290 290 prop.AppendElement(this._iconic); 291 291 } 292 let l = this._links[idx]; 293 prop.AppendElement(this.getAtom(l.checked)); 292 294 }, 293 295 trunk/chrome/skin/common/style.css
r1068 r1086 140 140 } 141 141 treechildren::-moz-tree-cell-text(selected) { 142 color: white !important;142 color: white; 143 143 font-weight: bold; 144 144 } trunk/chrome/skin/select/style.css
r1072 r1086 114 114 } 115 115 treechildren::-moz-tree-row(f5) { 116 background-color: #DDFFF4 !important;117 116 } 118 117 treechildren::-moz-tree-row(f5, selected) { … … 137 136 background-color: #DFC2C2 !important; 138 137 } 138 treechildren::-moz-tree-cell-text(manuallySelected, selected) { 139 font-family: monospace; 140 color: black !important; 141 } 142 treechildren::-moz-tree-cell-text(manuallySelected, selected), 143 treechildren::-moz-tree-cell-text(f1, selected), 144 treechildren::-moz-tree-cell-text(f2, selected), 145 treechildren::-moz-tree-cell-text(f3, selected), 146 treechildren::-moz-tree-cell-text(f4, selected), 147 treechildren::-moz-tree-cell-text(f5, selected), 148 treechildren::-moz-tree-cell-text(f6, selected), 149 treechildren::-moz-tree-cell-text(f7, selected), 150 treechildren::-moz-tree-cell-text(fastFiltered, selected) { 151 color: black !important; 152 }
