blob: 709eef7bb2009bb945701043184718f93c2486d2 [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 {
66 border-top-right-radius: 5px;
67 }
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) {
179 margin-left: $border-size;
180 }
181 }
182 }
183 > div {
184 overflow-x: auto;
185 margin: $border-size;
186 margin-left: $left-distance;
187 margin-right: $right-match-distance;
188
189 background-color: $light-orange; // $nearly-white; // $light-orange;
190 > em {
191 color: $nearly-white;
192 cursor: pointer;
193 display: block;
194 position: absolute;
195 right: 0px;
196 top: 0px;
197 width: $right-match-distance;
198 border-width: 0;
199 z-index: 8;
200 text-decoration:none;
201 text-align: center;
202 font-weight: bold;
203 font-style: normal;
204
205 &::after {
206 font-family: 'FontAwesome';
Nils Diewald2488d052015-04-09 21:46:02 +0000207 content: $fa-close;
Nils Diewalda944fab2015-04-08 21:02:04 +0000208 }
209 }
210 }
211}
212
Nils Diewald0ec142f2015-05-05 00:29:23 +0000213div.loading {
Nils Diewald61e6ff52015-05-07 17:26:50 +0000214 background-color: transparent !important;
Nils Diewald0ec142f2015-05-05 00:29:23 +0000215 height: 16px !important;
216 width: 16px !important;
217 margin: 0 auto !important;
218 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 +0000219
Nils Diewald0ec142f2015-05-05 00:29:23 +0000220}
221
222
Nils Diewalda944fab2015-04-08 21:02:04 +0000223/**
224 * SVG tree
225 */
226path.edge {
227 stroke: $darker-orange;
228 stroke-width: 2px;
229 fill: none;
230}
231
232g.root rect.empty {
233 stroke: $darker-orange;
234 fill: $darker-orange;
235 stroke-width: 2px;
236}
237
238g.middle rect {
239 stroke: $darker-orange;
240 stroke-width: 2px;
241 fill: $middle-orange;
242}
243
244g.leaf > rect {
245 display: none;
246}
247
248g > text {
249 text-anchor: middle;
250 font-size: 9pt;
251}
252
253g.leaf > text {
254 font-size: 10pt;
255 overflow: visible;
256}