blob: e62bb5a13dd61069176259380b5a3e922dfad756 [file] [log] [blame]
Akron7636edf2025-11-04 12:44:53 +01001@use "../../util";
2@use "tree";
3@use "../../base/colors";
4@use "../../base/lengths";
5@use "../../base/mixins";
Akron7e5afce2020-08-25 15:50:19 +02006
7/**
8 * Matchtree view
9 */
10
11div.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;
Akron7636edf2025-11-04 12:44:53 +010021 color: colors.$nearly-white;
Akron7e5afce2020-08-25 15:50:19 +020022 margin: 0;
23 padding: 0 !important;
24 float: left;
25
26 > span {
Akron7636edf2025-11-04 12:44:53 +010027 @include mixins.matchinfo-head;
28 @include mixins.cell-info;
Akron7e5afce2020-08-25 15:50:19 +020029 display: inline-block !important;
30 margin: 0;
31
32 &:nth-of-type(2) {
Akron7636edf2025-11-04 12:44:53 +010033 margin-left: lengths.$border-size;
Akron7e5afce2020-08-25 15:50:19 +020034 }
35 }
36 }
37
38 > div {
39 position: unset;
40 z-index: 4;
41 overflow-x: auto;
Akron7636edf2025-11-04 12:44:53 +010042 margin: lengths.$border-size;
43 margin-left: lengths.$left-distance;
44 margin-right: lengths.$right-view-distance;
45 background-color: colors.$light-orange;
Akron7e5afce2020-08-25 15:50:19 +020046 }
Akron9bddc842021-12-14 10:12:10 +010047
48 svg {
49 overflow: visible;
50 margin: 1em;
51 }
Akron7e5afce2020-08-25 15:50:19 +020052}