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