Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 1 | @import "../../util"; |
| 2 | @import "tree"; |
| 3 | |
| 4 | /** |
| 5 | * Matchtree view |
| 6 | */ |
| 7 | |
| 8 | div.matchtree { |
| 9 | overflow-x: hidden; |
| 10 | overflow-y: visible; |
| 11 | padding: 0; |
| 12 | margin-top: 1pt; |
| 13 | |
| 14 | // Label |
| 15 | h6 { |
| 16 | display: inline; |
| 17 | font-size: inherit; |
| 18 | color: $nearly-white; |
| 19 | margin: 0; |
| 20 | padding: 0 !important; |
| 21 | float: left; |
| 22 | |
| 23 | > span { |
| 24 | @include matchinfo-head; |
| 25 | @include cell-info; |
| 26 | display: inline-block !important; |
| 27 | margin: 0; |
| 28 | |
| 29 | &:nth-of-type(2) { |
| 30 | margin-left: $border-size; |
| 31 | } |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | > div { |
| 36 | position: unset; |
| 37 | z-index: 4; |
| 38 | overflow-x: auto; |
| 39 | margin: $border-size; |
| 40 | margin-left: $left-distance; |
| 41 | margin-right: $right-view-distance; |
| 42 | background-color: $light-orange; |
| 43 | } |
Akron | 9bddc84 | 2021-12-14 10:12:10 +0100 | [diff] [blame] | 44 | |
| 45 | svg { |
| 46 | overflow: visible; |
| 47 | margin: 1em; |
| 48 | } |
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 49 | } |