Bug 611073 - Replace the inner border color with a regular padding, improving treechildren::-moz-tree-progressmeter performance. r=dao

This commit is contained in:
Nils Maier 2010-11-25 10:06:28 +01:00
parent 161a7912fa
commit a97ade0dd6
2 changed files with 12 additions and 10 deletions

View File

@ -217,11 +217,12 @@ treechildren::-moz-tree-drop-feedback {
treechildren::-moz-tree-progressmeter {
margin: 2px 4px;
border: 2px solid;
-moz-border-top-colors: ThreeDShadow -moz-Dialog;
-moz-border-right-colors: ThreeDHighlight -moz-Dialog;
-moz-border-bottom-colors: ThreeDHighlight -moz-Dialog;
-moz-border-left-colors: ThreeDShadow -moz-Dialog;
padding: 1px;
border: 1px solid;
border-top-color: ThreeDShadow;
border-right-color: ThreeDHighlight;
border-bottom-color: ThreeDHighlight;
border-left-color: ThreeDShadow;
background-color: -moz-Dialog;
color: ThreeDShadow;
}

View File

@ -212,11 +212,12 @@ treechildren::-moz-tree-drop-feedback {
treechildren::-moz-tree-progressmeter {
margin: 2px 4px;
border: 2px solid;
-moz-border-top-colors: ThreeDShadow -moz-Dialog;
-moz-border-right-colors: ThreeDHighlight -moz-Dialog;
-moz-border-bottom-colors: ThreeDHighlight -moz-Dialog;
-moz-border-left-colors: ThreeDShadow -moz-Dialog;
padding: 1px;
border: 1px solid;
border-top-color: ThreeDShadow;
border-right-color: ThreeDHighlight;
border-bottom-color: ThreeDHighlight;
border-left-color: ThreeDShadow;
background-color: -moz-Dialog;
color: ThreeDShadow;
}