blob: 48f179962c85a16ef8c0ff26066ed1d8c7bb5e5e [file] [log] [blame]
Nils Diewald7cad8402014-07-08 17:06:56 +00001@charset "utf-8";
2
3ol > li:not(.active) .tokenInfo {
4 display: none;
5}
6
7.tokenInfo {
8 display: none;
9 background-color: #ffa500;
10 margin-right: 26px;
11 overflow: auto;
12 &.active {
13 display: block;
14 }
15 table {
16 font-size: 10pt;
17 padding: 3pt 10pt; /* wie in ol > li.active p */
18 /* All cells */
19 > tr {
20 > * {
21 padding: 1pt 6pt;
22 vertical-align: top;
23 }
24 > td {
25 text-align: center;
26 background-color: #f4eebb;
27 }
28 /* header */
29 > th{
30 &:not([rowspan]) {
31 color: white;
32 text-shadow: none;
33 }
34 &[rowspan]:first-child {
35 background-color: #f4eebb;
36 }
37 span.switchSort {
38 cursor: pointer;
39 position: absolute;
40 display: inline-block;
41 right: 0;
42 margin-right: -11pt;
43 width: 20pt;
44 }
45 }
46 &:first-child th {
47 text-align: center;
48 background-color: #ff8000;
49 /* first column header */
50 &:first-child {
51 position: relative;
52 padding-right: 20pt;
53 padding-left: 5pt;
54 }
55 /* second column header */
56 &:nth-child(2) {
57 text-align: left;
58 padding-left: 20pt;
59 padding-right: 5pt;
60 }
61 }
62 }
63 }
64}