/* Place all the styles related to the traitements controller here. */

/* status of codes
 * -1 : no status 
 * 0 : No
 * 1 : In Progress
 * 2 : Done
 * 3 : error
 * 4 : updating db
 * 5 : unknown
 */

.status-1{
	background-color:gray !important;
}

.status0{
	background-color:white !important;
}

.status1{
	background-color:yellow !important;
}

.status2{
	background-color:green !important;
}

.status3{
	background-color:red !important;
}

.status4{
  background-color:orange !important;
}

.status5{
  background-color:pink !important;
}

/* Ensure status colors work in table cells - higher specificity to override Bootstrap */
table td.status-1,
table.table td.status-1 {
  background-color: gray !important;
}

table td.status0,
table.table td.status0 {
  background-color: white !important;
}

table td.status1,
table.table td.status1 {
  background-color: yellow !important;
}

table td.status2,
table.table td.status2 {
  background-color: green !important;
}

table td.status3,
table.table td.status3 {
  background-color: red !important;
}

table td.status4,
table.table td.status4 {
  background-color: orange !important;
}

table td.status5,
table.table td.status5 {
  background-color: pink !important;
}
