| 1 | window { |
| 2 | background-color: #CCCCCC; |
| 3 | } |
| 4 | |
| 5 | box.tabpanels { |
| 6 | border: 1px outset #CCCCCC; |
| 7 | padding: 10px; |
| 8 | } |
| 9 | |
| 10 | tab { |
| 11 | padding-left: 10px; |
| 12 | padding-right: 10px; |
| 13 | } |
| 14 | |
| 15 | treehead > treerow > treecell { |
| 16 | border: 1px outset #CCCCCC; |
| 17 | padding-top: 1px; |
| 18 | padding-bottom: 1px; |
| 19 | padding-left: 5px; |
| 20 | padding-right: 5px; |
| 21 | background-color: #CCCCCC; |
| 22 | color: #000000; |
| 23 | } |
| 24 | |
| 25 | treechildren > treeitem > treerow > treecell { |
| 26 | border-right: 1px solid #CCCCCC; |
| 27 | border-bottom: 1px solid #CCCCCC; |
| 28 | color: inherit; |
| 29 | padding-left: 10px; |
| 30 | padding-top: 1px; |
| 31 | padding-bottom: 1px; |
| 32 | } |
| 33 | |
| 34 | treechildren > treeitem > treerow > treecell.fieldcell { |
| 35 | border-right: 1px solid #CCCCCC; |
| 36 | border-bottom: 1px solid #CCCCCC; |
| 37 | color: inherit; |
| 38 | padding: 0px; |
| 39 | margin: 0px; |
| 40 | } |
| 41 | |
| 42 | |
| 43 | treechildren > treeitem > treerow [selectedrow ~= false] { |
| 44 | background-color: white; |
| 45 | color: black; |
| 46 | } |
| 47 | |
| 48 | treechildren > treeitem > treerow [selectedrow ~= true] { |
| 49 | background-color: #336699; |
| 50 | color: white; |
| 51 | } |
| 52 | |
| 53 | tree#infotree treechildren > treeitem > treerow [selectedrow ~= false] { |
| 54 | background-color: white; |
| 55 | color: black; |
| 56 | } |
| 57 | |
| 58 | tree#infotree treechildren > treeitem > treerow [selectedrow ~= true] { |
| 59 | background-color: white; |
| 60 | color: black; |
| 61 | } |
| 62 | |
| 63 | tree { |
| 64 | border: 1px inset #CCCCCC; |
| 65 | } |
| 66 | |
| 67 | a { |
| 68 | color: #0000FF; |
| 69 | text-decoration: underline; |
| 70 | } |
| 71 | |
| 72 | a:hover { |
| 73 | color: #FF0000; |
| 74 | text-decoration: underline; |
| 75 | } |
| 76 | |
| 77 | tree treechildren > treeitem > treerow[selectedrow=true] > treecell > a:link { |
| 78 | color: #FFFFFF; |
| 79 | } |
| 80 | |
| 81 | tree treechildren > treeitem > treerow[selectedrow ~= true] > treecell > a:hover { |
| 82 | color: #FFFFFF; |
| 83 | } |
| 84 | |
| 85 | input.dispcell { |
| 86 | border: none; |
| 87 | background-color: #CCCCCC; |
| 88 | height: 12px; |
| 89 | font-family: tahoma; |
| 90 | font-size: 10px; |
| 91 | } |
| 92 | |