| @charset "utf-8"; |
| @import "../util"; |
| |
| $left-width: 176px; |
| $border-size: 2px; |
| $left-distance: $left-width + ($border-size * 2); |
| |
| /** |
| * Table view |
| * |
| * The table view is complicated, as the |
| * first column has to be static. |
| */ |
| @mixin matchinfo-head { |
| // border-width: 0px; |
| border-top: $border-size solid $darker-orange; // #ff8000; |
| width: $left-width / 2; |
| } |
| |
| div.matchinfo:empty { |
| display: none !important; |
| } |
| |
| div.matchinfo { |
| position: relative; |
| width: 100%; |
| padding-top: $border-size; |
| // background-color: $dark-orange; |
| height: auto; |
| font-size: 10pt; |
| text-align: left; |
| p.queryfragment { |
| position:relative; |
| @include choose-item; |
| border : { |
| width: $border-size; |
| style: solid; |
| radius: $standard-border-radius; |
| } |
| padding: 2pt 4pt !important; |
| margin: { |
| // left: $border-size; |
| left: $left-distance; |
| top: .5em; |
| bottom: .5em; |
| right: $right-match-distance; |
| } |
| &:hover { |
| cursor:pointer; |
| @include choose-hover; |
| } |
| |
| // This is the description |
| > span:first-of-type { |
| font-weight: bold; |
| padding-right: 4pt; |
| } |
| |
| // Query fragment |
| > span:nth-of-type(2) { |
| padding-right: 1.2em; |
| } |
| |
| &::after { |
| font-family: 'FontAwesome'; |
| content: $fa-to-query; |
| position: absolute; |
| right: 4pt; |
| top: $border-size; |
| } |
| } |
| } |
| |
| div.matchtable > div { |
| z-index: 20; |
| margin-left: $left-distance - ($border-size / 2); |
| margin-right: $right-match-distance; |
| padding: 0; |
| overflow-x: auto; |
| overflow-y: visible; |
| width: auto; |
| |
| table { |
| display: table; |
| border-collapse: separate; |
| border-spacing: 0px; |
| } |
| th { |
| color: $nearly-white; |
| } |
| |
| // Use matchinfo cells for query creation |
| td, |
| tbody th, |
| thead th:not(:nth-child(1)):not(:nth-child(2)) { |
| cursor: pointer; |
| } |
| td:empty { |
| cursor: default; |
| } |
| tr { |
| outline: none; |
| td.chosen, |
| th.chosen, |
| div.chosen { |
| background-color: $light-green !important; |
| color: $nearly-white; |
| // transition: color 0.1s, background-color 0.15s ease-out; |
| } |
| } |
| |
| thead { |
| tr th { |
| background-color: $darker-orange; |
| border-top-width: 0px !important; |
| text-align: center; |
| &:nth-of-type(1), &:nth-of-type(2) { |
| text-align: left; |
| } |
| &.mark { |
| background-color: $darkest-orange; // #f6a800; |
| } |
| } |
| } |
| |
| tbody { |
| > tr:nth-of-type(1) > th { |
| border-top-color: transparent; |
| } |
| } |
| tr { |
| /** |
| * The first two columns. |
| */ |
| > th:nth-of-type(1), |
| > th:nth-of-type(2) { |
| position: absolute; |
| z-index: 80; |
| vertical-align: middle; |
| left: 0px; |
| @include matchinfo-head; |
| } |
| > th:nth-of-type(2) { |
| left: ($left-width / 2) + $border-size; |
| } |
| |
| // Includes header line as well |
| > * { |
| @include cell-info; |
| border: ($border-size / 2) solid $dark-orange; |
| } |
| } |
| tr > td { |
| background-color: $middle-orange; // $nearly-white; |
| white-space: nowrap; |
| vertical-align: top; |
| text-align: center; |
| &.mark { |
| background-color: $light-orange; |
| } |
| } |
| tr:nth-child(even) > td { |
| background-color: $light-orange; |
| &.mark { |
| background-color: $middle-orange; |
| } |
| } |
| |
| // table for key-value pairs |
| td.matchkeyvalues { |
| padding: 0; |
| > div { |
| @include cell-info; |
| > span { |
| color: $darkest-orange; |
| text-align: right; |
| &::after { |
| content: ":" |
| } |
| padding-right: .5em; |
| } |
| } |
| } |
| } |
| |
| |
| div.metatable, div.matchtable { |
| position: relative; |
| } |
| |
| /** |
| * Label |
| */ |
| // The metatable branch was experimental |
| div.matchtree { |
| h6 { |
| display: inline; |
| font-size: inherit; |
| color: $nearly-white; |
| margin: 0; |
| padding: 0 !important; |
| float: left; |
| > span { // , > div { |
| @include matchinfo-head; |
| @include cell-info; |
| display: inline-block !important; |
| margin: 0; |
| &:nth-of-type(2) { |
| margin-left: $border-size; |
| } |
| } |
| } |
| } |
| |
| /** |
| * Tree view |
| */ |
| div.matchtree { |
| position: relative; |
| overflow-x: hidden; |
| overflow-y: visible; |
| padding: 0; |
| margin-top: 1pt; |
| |
| > div { |
| position: unset; |
| z-index: 4; |
| overflow-x: auto; |
| margin: $border-size; |
| margin-left: $left-distance; |
| margin-right: $right-match-distance; |
| |
| background-color: $light-orange; |
| } |
| } |
| |
| div.button-group.button-panel.button-matchinfo { |
| display: inline-block; |
| margin-right: .5em; |
| > span { |
| position: relative; |
| box-shadow: none; |
| } |
| } |
| |
| div.matchinfo .view + .view { |
| margin-top: 4 * $border-size !important; |
| } |
| |
| |
| // Metatable |
| div.metatable > dl { |
| margin-right: $right-match-distance; |
| margin-top: $border-size; |
| |
| > div { |
| border-color: $dark-orange; |
| > dt { |
| background: $darker-orange; |
| color: $nearly-white; |
| width: 12.5em; |
| } |
| > dd { |
| background-color: $light-orange; |
| } |
| } |
| } |
| |
| div.loading { |
| background-color: transparent !important; |
| height: 16px !important; |
| width: 16px !important; |
| margin: 0 auto !important; |
| background-image: url('data:image/gif;base64,R0lGODlhEAAQAIABAP///wAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJBAABACwAAAAAEAAQAAACKYQPobt44QyM01VW0cVNPq48Hzh2UngyGvet6OpmKWmBb5TI+LlTOlAAACH5BAkEAAEALAAAAAAQABAAAAIohA+hu3gMnXyBqnkNw1XDnHThZ32bd6LUg0SOOIJsCaPmtOJvrctHAQAh+QQJBAABACwAAAAAEAAQAAACKYQPobt44QyM01VW0cVNPq48nxZKGLkxqGiungmyCXh9nRUleSZrO10AACH5BAkEAAEALAAAAAAQABAAAAIohA8RyKwN04pSWdumufp0niHghnkPyaWmqZLsKL3QWXUrJdpo66RKAQAh+QQJBAABACwAAAAAEAAQAAACJoQPEcisDdOKUlnbrp4IH989n1iBJUhK47itxkbGsEvRtXq/8B4UACH5BAkEAAEALAAAAAAQABAAAAIphA8RyKwN04pSWdvuNPto1HEX6G1YOYrain5im0pQ/GSnTIFr7eyhUQAAIfkECQQAAQAsAAAAABAAEAAAAiqMf6ALwWoelJFS5CbESTdeNUu3jWP4IWe2qS0TsmC8cuZFsrAkWrgtKQAAIfkECQQAAQAsAAAAABAAEAAAAiiMf6AL6LwMnDFQVG9SkrveWN6XjR82Mmi4cdMTvWsjnyIV4rIOgUwBACH5BAkEAAEALAAAAAAQABAAAAImjH+gC8HrXpNTxoeuzkltrkFg6BnMiJxpaYpWV76jDFKujV14LBUAIfkEAR4AAQAsAAAAABAAEAAAAiSEDxHIrA3TilJZ266eaN/8HJixdd4nailXgafrwSUVUqltQgUAOw=='); |
| |
| } |
| |
| |