universe@52: /* universe@52: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. universe@52: * universe@180: * Copyright 2021 Mike Becker. All rights reserved. universe@52: * universe@52: * Redistribution and use in source and binary forms, with or without universe@52: * modification, are permitted provided that the following conditions are met: universe@52: * universe@52: * 1. Redistributions of source code must retain the above copyright universe@52: * notice, this list of conditions and the following disclaimer. universe@52: * universe@52: * 2. Redistributions in binary form must reproduce the above copyright universe@52: * notice, this list of conditions and the following disclaimer in the universe@52: * documentation and/or other materials provided with the distribution. universe@52: * universe@52: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" universe@52: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE universe@52: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE universe@52: * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE universe@52: * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR universe@52: * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF universe@52: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS universe@52: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN universe@52: * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) universe@52: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE universe@52: * POSSIBILITY OF SUCH DAMAGE. universe@52: * universe@52: */ universe@75: universe@86: .project-attributes { universe@266: margin-bottom: 1em; universe@81: } universe@81: universe@101: .project-attributes .row > div + div { universe@81: padding-left: 2em; universe@81: } universe@81: universe@81: span.phase-2 { universe@81: text-decoration: line-through; universe@81: } universe@86: universe@86: .issue-progress-bar { universe@101: box-sizing: border-box; universe@101: width: 100%; universe@101: height: 0.5em; universe@86: display: flex; universe@86: position: relative; universe@101: border-style: solid; universe@172: border-width: thin; universe@86: border-color: #6060cc; universe@86: } universe@86: universe@86: .issue-progress-bar .open { universe@86: height: 100%; universe@86: background: steelblue; universe@86: } universe@86: universe@86: .issue-progress-bar .active { universe@86: height: 100%; universe@86: background: gold; universe@86: } universe@86: universe@86: .issue-progress-bar .done { universe@86: height: 100%; universe@86: background: green; universe@86: } universe@92: universe@110: .issue-tag, .version-tag { universe@92: padding: .1em 2ex .1em 2ex; universe@92: display: inline-block; universe@101: box-sizing: border-box; universe@103: border-style: solid; universe@172: border-width: thin; universe@92: border-color: silver; universe@103: border-radius: 4pt; universe@92: background: lightgray; universe@101: text-align: center; universe@92: font-weight: bolder; universe@103: font-size: x-small; universe@92: color: whitesmoke; universe@92: } universe@92: universe@92: .issue-tag.Bug { universe@92: background: red; universe@92: } universe@92: universe@92: .issue-tag.Improvement, .issue-tag.Feature { universe@103: background: limegreen; universe@92: } universe@92: universe@92: .issue-tag.Task { universe@92: background: deepskyblue; universe@92: } universe@92: universe@92: .issue-tag.Test { universe@92: background: lightskyblue; universe@92: } universe@92: universe@92: .issue-tag.phase-0 { universe@92: background: steelblue; universe@92: } universe@92: universe@92: .issue-tag.phase-1 { universe@92: background: gold; universe@111: color: black; universe@92: } universe@92: universe@92: .issue-tag.phase-2 { universe@92: background: green; universe@92: } universe@92: universe@129: div.navmenu-icon { universe@110: display: inline-block; universe@110: width: .5em; universe@110: height: .5em; universe@110: margin-right: .25em; universe@110: } universe@110: universe@110: .version-Future { universe@110: background: lightskyblue; universe@110: } universe@110: universe@110: .version-Unreleased { universe@120: background: gold; universe@120: color: black; universe@110: } universe@110: universe@110: .version-Released { universe@110: background: limegreen; universe@110: } universe@110: universe@110: .version-LTS { universe@120: background: green; universe@110: } universe@110: universe@110: .version-Deprecated { universe@110: color: lightgray; universe@110: background: darkgray; universe@110: } universe@124: universe@263: hr.issue-view-separator { universe@124: border-image-source: linear-gradient(to right, rgba(60, 60, 60, .1), rgba(96, 96, 96, 1), rgba(60, 60, 60, .1)); universe@124: border-image-slice: 1; universe@172: border-width: thin; universe@124: border-style: none; universe@124: border-top-style: solid; universe@124: } universe@124: universe@124: div.comment { universe@207: padding-left: .25rem; universe@124: margin-bottom: 1.25em; universe@124: } universe@144: universe@207: .comment-author { universe@207: color: #3060f8; universe@207: background: #e7e7ef; universe@207: margin-left: -.25rem; universe@207: padding: .25rem; universe@207: } universe@207: universe@207: .comment-author-name { universe@207: color: inherit; universe@207: } universe@207: universe@207: .comment-edit-icon { universe@207: margin-left: 1ex; universe@207: } universe@207: universe@207: span.comment-edit-info { universe@207: margin-left: 1ex; universe@207: color: #556080; universe@207: } universe@207: universe@144: span.eta-overdue { universe@144: color: red; universe@212: } universe@212: universe@212: table.issue-view { universe@212: border-collapse: collapse; universe@212: margin-bottom: 1em; universe@212: } universe@212: universe@212: table.issue-view td, table.issue-view th { universe@212: background: #f7f7f7; universe@212: border: solid silver 1pt; universe@212: padding: .5em; universe@212: } universe@212: universe@212: table.issue-view th { universe@212: white-space: nowrap; universe@212: } universe@263: universe@263: table.relation-editor input, universe@263: table.relation-editor button, universe@263: table.relation-editor .button { universe@263: box-sizing: border-box; universe@263: width: 100%; universe@263: } universe@263: universe@263: table.relation-editor button, universe@263: table.relation-editor .button { universe@263: text-align: center; universe@263: padding: .1em .25em .1em .25em; universe@263: }