blob: 4f5edbc4baf212bf3d97a7d607082cb8b0029a7e [file] [log] [blame]
Akron7e5afce2020-08-25 15:50:19 +02001@import "../../util";
2@import "tree";
3
4/**
5 * Matchtree view
6 */
7
8div.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 }
Akron9bddc842021-12-14 10:12:10 +010044
45 svg {
46 overflow: visible;
47 margin: 1em;
48 }
Akron7e5afce2020-08-25 15:50:19 +020049}