blob: ac5830ebe72a3496e10f501a75b5fe60649a124b [file] [log] [blame]
Nils Diewaldf2e02a92014-11-12 18:31:05 +00001@charset "utf-8";
2
3@import "colors";
4
5ol > li:not(.active) {
6 .tokenInfo, .treeInfo {
7 display: none;
8 }
9}
10
11.tokenInfo, .treeInfo {
12 display: none;
13 background-color: $dark-orange;
14 margin-right: 26px;
15 overflow: auto;
16 &.active {
17 display: block;
18 }
19}
20
21.tokenInfo {
22 table {
23 font-size: 10pt;
24 padding: 3pt 10pt; /* wie in ol > li.active p */
25 /* All cells */
26 > tr {
27 > * {
28 padding: 1pt 6pt;
29 vertical-align: top;
30 }
31 > td {
32 text-align: center;
33 background-color: $light-orange;
34 }
35 /* header */
36 > th{
37 &:not([rowspan]) {
38 color: white;
39 text-shadow: none;
40 }
41 &[rowspan]:first-child {
42 background-color: $light-orange;
43 }
44 span.switchSort {
45 cursor: pointer;
46 position: absolute;
47 display: inline-block;
48 right: 0;
49 margin-right: -11pt;
50 width: 20pt;
51 }
52 }
53 &:first-child th {
54 text-align: center;
55 background-color: $darker-orange;
56 /* first column header */
57 &:first-child {
58 position: relative;
59 padding-right: 20pt;
60 padding-left: 5pt;
61 }
62 /* second column header */
63 &:nth-child(2) {
64 text-align: left;
65 padding-left: 20pt;
66 padding-right: 5pt;
67 }
68 }
69 }
70 }
71}
72
73g.root > rect {
74 fill: none;
75 stroke-width: 5px;
76 stroke: $darker-orange;
77}
78
79g.middle > rect {
80 fill: $light-orange;
81 stroke: $darker-orange;
82 color: white;
83 stroke-width: 2px;
84 padding: 2px;
85}
86
87g.leaf > rect {
88 display: none;
89}
90
91svg {
92 background-color: $dark-orange;
93 overflow: hidden;
94}
95
96text {
97 font-family: verdana, tahoma, arial;
98 font-size: 9pt;
99 color: $dark-grey;
100 text-shadow: 1px 1px rgba(255, 255, 255, 0.4);
101}
102
103.edgePath path {
104 stroke: white;
105 stroke-width: 2px;
106 fill: none;
107}