blob: f712ae0ecfb4a44235f3ca601aef222c092e4f24 [file] [log] [blame]
Nils Diewalda944fab2015-04-08 21:02:04 +00001@charset "utf-8";
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00002@import "../util";
Nils Diewalda944fab2015-04-08 21:02:04 +00003
4$left-width: 176px;
5$border-size: 2px;
6$left-distance: $left-width + ($border-size * 2);
7
8@mixin cell-info {
9 text-overflow: ellipsis;
10 overflow: hidden;
11 padding: 1px 6px;
12 margin: 0px;
13}
14
15/**
16 * Table view
17 *
18 * The table view is complicated, as the
19 * first column has to be static.
20 */
21@mixin matchinfo-head {
22 border-width: 0px;
Nils Diewald1c546922015-04-13 01:56:19 +000023 border-top: $border-size solid $darker-orange; // #ff8000;
Nils Diewalda944fab2015-04-08 21:02:04 +000024 width: $left-width / 2;
25}
26
27div.matchinfo {
28 position: relative;
29 width: 100%;
30 padding-top: $border-size;
Nils Diewald1c546922015-04-13 01:56:19 +000031// background-color: $dark-orange;
Nils Diewalda944fab2015-04-08 21:02:04 +000032 height: auto;
33 font-size: 10pt;
34 text-align: left;
35 > p.addtree {
36 position: relative;
37 @include choose-item;
38 border: {
39 width: $border-size;
40 style: solid;
41 radius: $standard-border-radius;
42 }
43
44 font-size: inherit;
45 margin: $border-size $border-size 0 $border-size !important;
46 width: $left-width;
47 text-align: center;
48 cursor: pointer;
49 padding: 0 !important;
50
51 &:hover {
52 cursor:pointer;
53 @include choose-hover;
54 }
55
56 *.menu {
57 border-top-right-radius: 8px;
58 position: absolute;
59 width: $left-width;
60 left: 0;
61 bottom: 0;
62 text-align: left;
63 margin: -1* $border-size;
64 margin-top: 0;
65 > li:first-of-type {
Akronaba7a5a2016-08-15 21:58:33 +020066 border-top-right-radius: 5px;
Nils Diewalda944fab2015-04-08 21:02:04 +000067 }
68 }
69 }
70}
71
72div.matchtable {
73 z-index: 20;
74 margin-left: $left-distance - ($border-size / 2);
75 margin-right: $right-match-distance;
76 padding: 0;
77 overflow-x: auto;
78 overflow-y: visible;
79 width: auto;
Nils Diewald0ec142f2015-05-05 00:29:23 +000080
Nils Diewalda944fab2015-04-08 21:02:04 +000081 table {
82 display: table;
83 border-collapse: separate;
84 border-spacing: 0px;
85 }
86 th {
87 color: $nearly-white;
88 }
89 thead {
90 tr th {
91 background-color: $darker-orange;
92 border-top-width: 0px !important;
Akron2495ceb2016-02-13 17:17:52 +010093 text-align: center;
94 &:nth-of-type(1), &:nth-of-type(2) {
95 text-align: left;
96 }
Nils Diewalda944fab2015-04-08 21:02:04 +000097 }
98 }
99 tbody {
100 > tr:nth-of-type(1) > th {
101 border-top-color: transparent;
102 }
103 /**
104 * Click on a row and it's highlighted.
105 */
106 > tr:focus {
107 outline: none;
108 /*
109 outline: (2 * $border-size) solid $light-green;
110 -moz-outline-radius: $border-size;
111 outline-radius: $border-size;
112 */
113 background-color: $light-green;
114 border-color: $light-green;
115 td {
116 background-color: inherit;
117 color: $nearly-white;
118 border-color: $light-green;
119 }
120 }
121 }
122 tr {
123 /**
124 * The first two columns.
125 */
126 > th:nth-of-type(1),
127 > th:nth-of-type(2) {
128 position: absolute;
129 z-index: 80;
130 vertical-align: middle;
131 left: 0px;
132 @include matchinfo-head;
133 }
134 > th:nth-of-type(2) {
135 left: ($left-width / 2) + $border-size;
136 }
137 > * {
138 @include cell-info;
139 border: ($border-size / 2) solid $dark-orange;
140 }
141 }
142 tr > td {
143 background-color: $middle-orange; // $nearly-white;
144 white-space: nowrap;
145 vertical-align: top;
146 text-align: center;
147 }
148 tr:nth-child(even) > td {
149 background-color: $light-orange;
150 }
151}
152
153/**
154 * Tree view
155 */
156div.matchtree {
157 position: relative;
158 overflow-x: hidden;
159 overflow-y: visible;
160 padding: 0;
161 margin-top: 1pt;
162
163 /**
164 * Label
165 */
166 h6 {
167 display: inline;
168 font-size: inherit;
169 color: $nearly-white;
170 margin: 0;
171 padding: 0 !important;
172 float: left;
173 > span {
174 @include matchinfo-head;
175 @include cell-info;
176 display: inline-block;
177 margin: 0;
178 &:nth-of-type(2) {
Akron3bb91bc2016-12-02 16:43:17 +0100179 margin-left: $border-size;
Nils Diewalda944fab2015-04-08 21:02:04 +0000180 }
181 }
182 }
183 > div {
Akron3bb91bc2016-12-02 16:43:17 +0100184 position: unset;
185 z-index: 4;
Nils Diewalda944fab2015-04-08 21:02:04 +0000186 overflow-x: auto;
187 margin: $border-size;
188 margin-left: $left-distance;
189 margin-right: $right-match-distance;
190
191 background-color: $light-orange; // $nearly-white; // $light-orange;
Akronc56cf2d2016-11-09 22:02:38 +0100192 > ul.action.image {
Nils Diewalda944fab2015-04-08 21:02:04 +0000193 display: block;
194 position: absolute;
Akron3bb91bc2016-12-02 16:43:17 +0100195 right: 0;
196 top: 0;
Akronc56cf2d2016-11-09 22:02:38 +0100197 z-index: 20;
Akronc56cf2d2016-11-09 22:02:38 +0100198 margin: 0;
199 padding: 0;
Akron3bb91bc2016-12-02 16:43:17 +0100200 // margin-right: -1 * $right-match-distance;
Nils Diewalda944fab2015-04-08 21:02:04 +0000201 width: $right-match-distance;
Akronc56cf2d2016-11-09 22:02:38 +0100202 li {
203 cursor: pointer;
204 color: $nearly-white;
205 text-decoration: none;
206 > span {
207 @include blind;
208 }
209 border-width: 0;
210 // z-index: 8;
211 text-decoration:none;
212 text-align: center;
Akronc56cf2d2016-11-09 22:02:38 +0100213 font-style: normal;
Nils Diewalda944fab2015-04-08 21:02:04 +0000214
Akronc56cf2d2016-11-09 22:02:38 +0100215 &.download::after {
216 font-family: 'FontAwesome';
217 content: $fa-download;
218 }
219
220 &.close::after {
221 font-family: 'FontAwesome';
222 content: $fa-close;
223 }
Nils Diewalda944fab2015-04-08 21:02:04 +0000224 }
225 }
226 }
227}
228
Nils Diewald0ec142f2015-05-05 00:29:23 +0000229div.loading {
Nils Diewald61e6ff52015-05-07 17:26:50 +0000230 background-color: transparent !important;
Nils Diewald0ec142f2015-05-05 00:29:23 +0000231 height: 16px !important;
232 width: 16px !important;
233 margin: 0 auto !important;
234 background-image: url('data:image/gif;base64,R0lGODlhEAAQAIABAP///wAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJBAABACwAAAAAEAAQAAACKYQPobt44QyM01VW0cVNPq48Hzh2UngyGvet6OpmKWmBb5TI+LlTOlAAACH5BAkEAAEALAAAAAAQABAAAAIohA+hu3gMnXyBqnkNw1XDnHThZ32bd6LUg0SOOIJsCaPmtOJvrctHAQAh+QQJBAABACwAAAAAEAAQAAACKYQPobt44QyM01VW0cVNPq48nxZKGLkxqGiungmyCXh9nRUleSZrO10AACH5BAkEAAEALAAAAAAQABAAAAIohA8RyKwN04pSWdumufp0niHghnkPyaWmqZLsKL3QWXUrJdpo66RKAQAh+QQJBAABACwAAAAAEAAQAAACJoQPEcisDdOKUlnbrp4IH989n1iBJUhK47itxkbGsEvRtXq/8B4UACH5BAkEAAEALAAAAAAQABAAAAIphA8RyKwN04pSWdvuNPto1HEX6G1YOYrain5im0pQ/GSnTIFr7eyhUQAAIfkECQQAAQAsAAAAABAAEAAAAiqMf6ALwWoelJFS5CbESTdeNUu3jWP4IWe2qS0TsmC8cuZFsrAkWrgtKQAAIfkECQQAAQAsAAAAABAAEAAAAiiMf6AL6LwMnDFQVG9SkrveWN6XjR82Mmi4cdMTvWsjnyIV4rIOgUwBACH5BAkEAAEALAAAAAAQABAAAAImjH+gC8HrXpNTxoeuzkltrkFg6BnMiJxpaYpWV76jDFKujV14LBUAIfkEAR4AAQAsAAAAABAAEAAAAiSEDxHIrA3TilJZ266eaN/8HJixdd4nailXgafrwSUVUqltQgUAOw==');
Nils Diewald61e6ff52015-05-07 17:26:50 +0000235
Nils Diewald0ec142f2015-05-05 00:29:23 +0000236}
237
238
Nils Diewalda944fab2015-04-08 21:02:04 +0000239/**
240 * SVG tree
241 */
242path.edge {
243 stroke: $darker-orange;
244 stroke-width: 2px;
245 fill: none;
246}
247
248g.root rect.empty {
249 stroke: $darker-orange;
250 fill: $darker-orange;
251 stroke-width: 2px;
252}
253
254g.middle rect {
255 stroke: $darker-orange;
256 stroke-width: 2px;
257 fill: $middle-orange;
258}
259
Akron98a933f2016-08-11 00:19:17 +0200260g.middle.mark {
261 rect {
262 fill: $darker-orange;
263 }
264 > text {
265 fill: $light-orange;
266 > tspan {
267 stroke: $light-orange;
268 }
269 }
270}
271
272
273g.leaf.mark text > tspan {
274 font-weight: bold;
275}
276
Nils Diewalda944fab2015-04-08 21:02:04 +0000277g.leaf > rect {
278 display: none;
279}
280
Akron98a933f2016-08-11 00:19:17 +0200281g > text > tspan {
Nils Diewalda944fab2015-04-08 21:02:04 +0000282 text-anchor: middle;
283 font-size: 9pt;
284}
285
Akron98a933f2016-08-11 00:19:17 +0200286g.leaf > text > tspan {
Nils Diewalda944fab2015-04-08 21:02:04 +0000287 font-size: 10pt;
288 overflow: visible;
289}