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