Fixing bookmark separators.

I can't believe that bookmark specifix CSS lives in tree.css!
This commit is contained in:
varga%netscape.com 2003-04-17 21:07:35 +00:00
parent a91a8a871d
commit c89f445add
2 changed files with 22 additions and 2 deletions

View File

@ -842,7 +842,9 @@
<rule rdf:type="http://home.netscape.com/NC-rdf#BookmarkSeparator">
<treechildren>
<treeitem uri="rdf:*">
<treerow properties="rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#type separator"/>
<treerow properties="rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#type separator">
<treecell properties="separator" label="rdf:http://home.netscape.com/NC-rdf#Name"/>
</treerow>
</treeitem>
</treechildren>
</rule>
@ -951,7 +953,9 @@
<rule rdf:type="http://home.netscape.com/NC-rdf#BookmarkSeparator">
<treechildren>
<treeitem uri="rdf:*">
<treerow properties="rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#type separator" />
<treerow properties="rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#type separator">
<treecell properties="separator" label="rdf:http://home.netscape.com/NC-rdf#Name"/>
</treerow>
</treeitem>
</treechildren>
</rule>

View File

@ -281,3 +281,19 @@ treechildren:-moz-tree-image(Name, open) {
treechildren:-moz-tree-twisty(group, hidetwisty) {
list-style-image: none;
}
treechildren:-moz-tree-image(Name, separator) {
list-style-image: none;
width: 0px !important;
height: 0px !important;
margin: 0px 0px;
}
treechildren:-moz-tree-cell-text(Name, separator) {
color: ThreeDShadow;
margin: 0px 5px 0px 5px;
}
treechildren:-moz-tree-cell-text(Name, separator, selected, focus) {
color: HighlightText;
}