 /*
  * Compléments CSS pour Almavia
  */

@import url('default.css');

/* Améliorations de l'affichage du cartouche des tickets */
.table-bordered > tbody > tr .bug-summary {
	font-weight: bold;
	font-size: 150%;
	border-top: 2px inset #428bca;
	border-bottom: 2px inset #428bca;
}

.prio-40 td.bug-priority::before { /* Priorité haute */
	content: "\f077  ";
	color: #DD5A43;
	font-family: FontAwesome;
}

.prio-30 td.bug-priority::before { /* Priorité moyenne */
	content: "\f068  ";
	color: #FEB902;
	font-family: FontAwesome;
}

.prio-20 td.bug-priority::before {  /* Priorité basse */
	content: "\f078  ";
	color: #69AA46;
	font-family: FontAwesome;
}

.sev-50 td.bug-severity::before { /* Sévérité mineure */
	content: "\f063  ";
	color: #69AA46;
	font-family: FontAwesome;
}

.sev-60 td.bug-severity::before { /* Sévérité majeure */
	content: "\f062  ";
	color: #FEB902;
	font-family: FontAwesome;
}

.sev-80 td.bug-severity::before { /* Sévérité bloquante */
	content: "\f05e  ";
	color: #DD5A43;
	font-family: FontAwesome;
}

.cat-2 td.bug-category::before { /* Anomalie */
	content: "\f188  ";
	color: #DD5A43;
	font-family: FontAwesome;
}

.cat-3 td.bug-category::before { /* Évolution */
	content: "\f0eb  ";
	color: #C89505;
	font-family: FontAwesome;
}

.cat-4 td.bug-category::before { /* Assistance */
	content: "\f059  ";
	color: #428bca;
	font-family: FontAwesome;
}

.cat-45 td.bug-category::before { /* Tâche */
	content: "\f085  ";
	color: #69AA46;
	font-family: FontAwesome;
}

td.status-10-color, td.status-20-color, td.status-30-color, td.status-40-color, td.status-52-color, td.status-55-color, td.status-57-color, td.status-80-color, td.status-90-color {
     color: inherit;
}

/* Éviter que les trop grandes images en attachement cassent la mise en page */
.bugnote img {
        max-width: 100%;
}
/* Éviter que les trop longues chaînes de caractère (sans espace) cassent la mise en page */
tr.bugnote .bugnote-note {
	word-break: break-word;
}