How to print Just the Tree List

Archived from the Xataface Users forum.

Aoirthoir — Wed Oct 25, 2006 6:20 am

Sometimes it is nice to be able to see nothing but the tree list. If you have the stylish extension ( http://userstyles.com/ ) you can add the following code to a style. Alternatively you can create your own style sheet if you prefer. Though trust me, using stylish is much easier. It will allow you to turn a style on and off at will without a page reload in most cases. The following code will also allow you to expand the tree as but not all at once unfortunately. Lastly you can see the content: “{}” portion below. This is to allow a kind of checkbox. If I can figure out an image to be a checkbox instead then we could substitute the img tag. But this is the first iteration of this code…

Hope yall find it useful.

Here is the code:

@-moz-document   
domain(anydomainname),  
url-prefix(http://yourprefix..such as http://mywebsite.com/mydfapps/)  
  
{  
  
* {  
float: inherit !important;  
border: none !important;  
line-height: normal !important;  
height: auto !important;  
width: auto !important;  
overflow: visible !important;  
font-family: inherit !important;  
font-size: inherit !important;  
font-weight: bolder !important;  
color: inherit !important;  
}  
  
#top-section,  
#table_tabs,  
#contentActionsWrapper,  
#details-controller,  
.fineprint,  
h5,  
.documentContent  
{  
display: none !important;   
}  
  
li:before   
{  
content: "{  }";  
  
}  
  
}