src/main/webapp/projects.css

Sat, 29 Aug 2020 11:49:53 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 29 Aug 2020 11:49:53 +0200
changeset 101
c34c81b87674
parent 92
b723b31383ac
child 103
3d0d030dffa7
permissions
-rw-r--r--

minor visual improvements

     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2018 Mike Becker. All rights reserved.
     5  *
     6  * Redistribution and use in source and binary forms, with or without
     7  * modification, are permitted provided that the following conditions are met:
     8  *
     9  *   1. Redistributions of source code must retain the above copyright
    10  *      notice, this list of conditions and the following disclaimer.
    11  *
    12  *   2. Redistributions in binary form must reproduce the above copyright
    13  *      notice, this list of conditions and the following disclaimer in the
    14  *      documentation and/or other materials provided with the distribution.
    15  *
    16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    26  * POSSIBILITY OF SUCH DAMAGE.
    27  *
    28  */
    30 .project-attributes {
    31     margin-bottom: 2em;
    32 }
    34 .project-attributes .row > div + div {
    35     padding-left: 2em;
    36 }
    38 span.phase-2 {
    39     text-decoration: line-through;
    40 }
    42 .issue-progress-bar {
    43     box-sizing: border-box;
    44     width: 100%;
    45     height: 0.5em;
    46     display: flex;
    47     position: relative;
    48     border-style: solid;
    49     border-width: 1pt;
    50     border-color: #6060cc;
    51 }
    53 .issue-progress-bar .open {
    54     height: 100%;
    55     background: steelblue;
    56 }
    58 .issue-progress-bar .active {
    59     height: 100%;
    60     background: gold;
    61 }
    63 .issue-progress-bar .done {
    64     height: 100%;
    65     background: green;
    66 }
    68 .issue-tag {
    69     padding: .1em 2ex .1em 2ex;
    70     display: inline-block;
    71     box-sizing: border-box;
    72     border-style: outset;
    73     border-width: 2pt;
    74     border-color: silver;
    75     border-radius: 6pt;
    76     background: lightgray;
    77     text-transform: uppercase;
    78     text-align: center;
    79     font-weight: bolder;
    80     font-size: smaller;
    81     color: whitesmoke;
    82 }
    84 .issue-tag.Bug {
    85     background: red;
    86 }
    88 .issue-tag.Improvement, .issue-tag.Feature {
    89     background: green;
    90 }
    92 .issue-tag.Task {
    93     background: deepskyblue;
    94 }
    96 .issue-tag.Test {
    97     background: lightskyblue;
    98 }
   100 .issue-tag.phase-0 {
   101     background: steelblue;
   102 }
   104 .issue-tag.phase-1 {
   105     background: gold;
   106     color: black;
   107 }
   109 .issue-tag.phase-2 {
   110     background: green;
   111 }

mercurial