Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 1 | @charset "utf-8"; |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 2 | @import "../util"; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 3 | |
| 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 Diewald | 1c54692 | 2015-04-13 01:56:19 +0000 | [diff] [blame] | 23 | border-top: $border-size solid $darker-orange; // #ff8000; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 24 | width: $left-width / 2; |
| 25 | } |
| 26 | |
| 27 | div.matchinfo { |
| 28 | position: relative; |
| 29 | width: 100%; |
| 30 | padding-top: $border-size; |
Nils Diewald | 1c54692 | 2015-04-13 01:56:19 +0000 | [diff] [blame] | 31 | // background-color: $dark-orange; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 32 | 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 { |
Akron | aba7a5a | 2016-08-15 21:58:33 +0200 | [diff] [blame] | 66 | border-top-right-radius: 5px; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 67 | } |
| 68 | } |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | div.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 Diewald | 0ec142f | 2015-05-05 00:29:23 +0000 | [diff] [blame] | 80 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 81 | 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; |
Akron | 2495ceb | 2016-02-13 17:17:52 +0100 | [diff] [blame] | 93 | text-align: center; |
| 94 | &:nth-of-type(1), &:nth-of-type(2) { |
| 95 | text-align: left; |
| 96 | } |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 97 | } |
| 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 | */ |
| 156 | div.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; |
Akron | c56cf2d | 2016-11-09 22:02:38 +0100 | [diff] [blame] | 190 | > ul.action.image { |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 191 | display: block; |
| 192 | position: absolute; |
| 193 | right: 0px; |
| 194 | top: 0px; |
Akron | c56cf2d | 2016-11-09 22:02:38 +0100 | [diff] [blame] | 195 | z-index: 20; |
| 196 | /* |
| 197 | margin: 0; |
| 198 | padding: 0; |
| 199 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 200 | width: $right-match-distance; |
Akron | c56cf2d | 2016-11-09 22:02:38 +0100 | [diff] [blame] | 201 | li { |
| 202 | cursor: pointer; |
| 203 | color: $nearly-white; |
| 204 | text-decoration: none; |
| 205 | > span { |
| 206 | @include blind; |
| 207 | } |
| 208 | border-width: 0; |
| 209 | // z-index: 8; |
| 210 | text-decoration:none; |
| 211 | text-align: center; |
Akron | c56cf2d | 2016-11-09 22:02:38 +0100 | [diff] [blame] | 212 | font-style: normal; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 213 | |
Akron | c56cf2d | 2016-11-09 22:02:38 +0100 | [diff] [blame] | 214 | &.download::after { |
| 215 | font-family: 'FontAwesome'; |
| 216 | content: $fa-download; |
| 217 | } |
| 218 | |
| 219 | &.close::after { |
| 220 | font-family: 'FontAwesome'; |
| 221 | content: $fa-close; |
| 222 | } |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 223 | } |
| 224 | } |
| 225 | } |
| 226 | } |
| 227 | |
Nils Diewald | 0ec142f | 2015-05-05 00:29:23 +0000 | [diff] [blame] | 228 | div.loading { |
Nils Diewald | 61e6ff5 | 2015-05-07 17:26:50 +0000 | [diff] [blame] | 229 | background-color: transparent !important; |
Nils Diewald | 0ec142f | 2015-05-05 00:29:23 +0000 | [diff] [blame] | 230 | height: 16px !important; |
| 231 | width: 16px !important; |
| 232 | margin: 0 auto !important; |
| 233 | background-image: url('data:image/gif;base64,R0lGODlhEAAQAIABAP///wAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJBAABACwAAAAAEAAQAAACKYQPobt44QyM01VW0cVNPq48Hzh2UngyGvet6OpmKWmBb5TI+LlTOlAAACH5BAkEAAEALAAAAAAQABAAAAIohA+hu3gMnXyBqnkNw1XDnHThZ32bd6LUg0SOOIJsCaPmtOJvrctHAQAh+QQJBAABACwAAAAAEAAQAAACKYQPobt44QyM01VW0cVNPq48nxZKGLkxqGiungmyCXh9nRUleSZrO10AACH5BAkEAAEALAAAAAAQABAAAAIohA8RyKwN04pSWdumufp0niHghnkPyaWmqZLsKL3QWXUrJdpo66RKAQAh+QQJBAABACwAAAAAEAAQAAACJoQPEcisDdOKUlnbrp4IH989n1iBJUhK47itxkbGsEvRtXq/8B4UACH5BAkEAAEALAAAAAAQABAAAAIphA8RyKwN04pSWdvuNPto1HEX6G1YOYrain5im0pQ/GSnTIFr7eyhUQAAIfkECQQAAQAsAAAAABAAEAAAAiqMf6ALwWoelJFS5CbESTdeNUu3jWP4IWe2qS0TsmC8cuZFsrAkWrgtKQAAIfkECQQAAQAsAAAAABAAEAAAAiiMf6AL6LwMnDFQVG9SkrveWN6XjR82Mmi4cdMTvWsjnyIV4rIOgUwBACH5BAkEAAEALAAAAAAQABAAAAImjH+gC8HrXpNTxoeuzkltrkFg6BnMiJxpaYpWV76jDFKujV14LBUAIfkEAR4AAQAsAAAAABAAEAAAAiSEDxHIrA3TilJZ266eaN/8HJixdd4nailXgafrwSUVUqltQgUAOw=='); |
Nils Diewald | 61e6ff5 | 2015-05-07 17:26:50 +0000 | [diff] [blame] | 234 | |
Nils Diewald | 0ec142f | 2015-05-05 00:29:23 +0000 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 238 | /** |
| 239 | * SVG tree |
| 240 | */ |
| 241 | path.edge { |
| 242 | stroke: $darker-orange; |
| 243 | stroke-width: 2px; |
| 244 | fill: none; |
| 245 | } |
| 246 | |
| 247 | g.root rect.empty { |
| 248 | stroke: $darker-orange; |
| 249 | fill: $darker-orange; |
| 250 | stroke-width: 2px; |
| 251 | } |
| 252 | |
| 253 | g.middle rect { |
| 254 | stroke: $darker-orange; |
| 255 | stroke-width: 2px; |
| 256 | fill: $middle-orange; |
| 257 | } |
| 258 | |
Akron | 98a933f | 2016-08-11 00:19:17 +0200 | [diff] [blame] | 259 | g.middle.mark { |
| 260 | rect { |
| 261 | fill: $darker-orange; |
| 262 | } |
| 263 | > text { |
| 264 | fill: $light-orange; |
| 265 | > tspan { |
| 266 | stroke: $light-orange; |
| 267 | } |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | |
| 272 | g.leaf.mark text > tspan { |
| 273 | font-weight: bold; |
| 274 | } |
| 275 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 276 | g.leaf > rect { |
| 277 | display: none; |
| 278 | } |
| 279 | |
Akron | 98a933f | 2016-08-11 00:19:17 +0200 | [diff] [blame] | 280 | g > text > tspan { |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 281 | text-anchor: middle; |
| 282 | font-size: 9pt; |
| 283 | } |
| 284 | |
Akron | 98a933f | 2016-08-11 00:19:17 +0200 | [diff] [blame] | 285 | g.leaf > text > tspan { |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 286 | font-size: 10pt; |
| 287 | overflow: visible; |
| 288 | } |