Bug 1113639 - Stop highlighting search engines table header in preferences. r=florian.

This commit is contained in:
Abdelrhman Ahmed 2015-01-26 17:14:29 +01:00
parent f7f54b1dfc
commit 733711e0a3
3 changed files with 11 additions and 8 deletions

View File

@ -45,9 +45,10 @@
seltype="single"> seltype="single">
<treechildren id="engineChildren" flex="1"/> <treechildren id="engineChildren" flex="1"/>
<treecols> <treecols>
<treecol id="engineShown" type="checkbox" editable="true"/> <treecol id="engineShown" type="checkbox" editable="true" sortable="false"/>
<treecol id="engineName" flex="4" label="&engineNameColumn.label;"/> <treecol id="engineName" flex="4" label="&engineNameColumn.label;" sortable="false"/>
<treecol id="engineKeyword" flex="1" label="&engineKeywordColumn.label;" editable="true"/> <treecol id="engineKeyword" flex="1" label="&engineKeywordColumn.label;" editable="true"
sortable="false"/>
</treecols> </treecols>
</tree> </tree>

View File

@ -59,9 +59,11 @@
<treechildren id="engineChildren" flex="1" <treechildren id="engineChildren" flex="1"
ondragstart="onDragEngineStart(event);"/> ondragstart="onDragEngineStart(event);"/>
<treecols> <treecols>
<treecol id="engineShown" type="checkbox" style="min-width: 26px;" editable="true"/> <treecol id="engineShown" type="checkbox" style="min-width: 26px;" editable="true"
<treecol id="engineName" flex="4" label="&engineNameColumn.label;"/> sortable="false"/>
<treecol id="engineKeyword" flex="1" label="&engineKeywordColumn.label;" editable="true"/> <treecol id="engineName" flex="4" label="&engineNameColumn.label;" sortable="false"/>
<treecol id="engineKeyword" flex="1" label="&engineKeywordColumn.label;" editable="true"
sortable="false"/>
</treecols> </treecols>
</tree> </tree>

View File

@ -641,7 +641,7 @@ xul|treecolpicker {
padding: 5px 10px; padding: 5px 10px;
} }
xul|treecol:not([hideheader="true"]):hover, xul|treecol:not([hideheader="true"]):not([sortable="false"]):hover,
xul|treecolpicker:hover { xul|treecolpicker:hover {
background-color: #dadada; background-color: #dadada;
color: #333; color: #333;
@ -682,4 +682,4 @@ xul|treechildren::-moz-tree-cell-text {
xul|treechildren::-moz-tree-cell-text(selected) { xul|treechildren::-moz-tree-cell-text(selected) {
color: #fff; color: #fff;
} }