﻿/*
	Badge degli Stati
*/

.badge {
    border-radius: 5px;
    background: grey;
    color: white;
    padding: 3px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    font-weight: bold;
}

    .badge.project {
    }

        .badge.project.draft {
            background-color: silver !important;
            color: white !important;
        }

        .badge.project.released {
            background-color: lightcoral !important;
            color: white !important;
        }

        .badge.project.running {
            background-color: gold !important;
            color: white !important;
        }

        .badge.project.completed {
            background-color: darkseagreen !important;
            color: white !important;
        }

        .badge.project.closed {
            background-color: darkseagreen !important;
            color: white !important;
        }

        .badge.project.template {
            background-color: midnightblue !important;
            color: white !important;
        }

        .badge.project.archived {
            background-color: silver !important;
            color: white !important;
        }

    .badge.workitem {
    }

        .badge.workitem.draft {
            background-color: silver !important;
            color: white !important;
        }

        .badge.workitem.backlog {
            background-color: midnightblue !important;
            color: white !important;
        }

        .badge.workitem.suspended {
            background-color: midnightblue !important;
            color: white !important;
        }

        .badge.workitem.accepted {
            background-color: lightcoral !important;
            color: white !important;
        }

        .badge.workitem.running {
            background-color: gold !important;
            color: white !important;
        }

        .badge.workitem.rejected {
            background-color: lightcoral !important;
            color: white !important;
        }

        .badge.workitem.completed {
            background-color: darkseagreen !important;
            color: white !important;
        }

        .badge.workitem.archived {
            background-color: silver !important;
            color: white !important;
        }

        .badge.workitem.canceled {
            background-color: silver !important;
            color: white !important;
        }

        .badge.workitem.void {
            background-color: transparent !important;
            color: transparent !important;
        }

/*
	Struttura ad Albero
*/

.workItemTree {
}

	.workItemTree a {
		text-decoration: none;
	}

		.workItemTree a:hover {
			text-decoration: underline;
		}