File: style.css

Recommend this page to a friend!
  Classes of Vallo Reima   JS Render Tree   style.css   Download  
File: style.css
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: JS Render Tree
Create and modify a tree view of page elements
Author: By
Last change: Update of style.css
Date: 2 years ago
Size: 821 bytes
 

Contents

Class file image Download
/* * Render a tree of objects * * @package Task * @author Vallo Reima * @copyright (C)2015 */ html, body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 100%; overflow: auto; } .tree { margin-left: 1em; } .command { margin-bottom: 1em; } .command button { } .enabled:hover { cursor: pointer; } .tree ul { list-style: none; margin-top: 0.5em; padding: 0; } .tree li { padding-top: 0.25em; } .tree img:hover { cursor: pointer; } .tree ul li { font-size: 0.93em; } .tree ul ul { display: none; } .tree ul ul li { margin-left: 1.0em; } .tree img { margin-right: 0.3em; } .tree span { color: black; text-decoration: none; } .tree span:hover{ background-color: #dddddd; cursor: default; } .selected{ background-color: #cccccc; } .hide{ display:none; }