instructeur: show deleted dossiers for a procedure

This commit is contained in:
Christophe Robillard 2020-03-20 17:59:16 +01:00
parent bce2f92d2c
commit b4b92accf1
8 changed files with 116 additions and 0 deletions

View file

@ -17,21 +17,41 @@
border: 1px solid $blue;
}
&.en-instruction {
@extend .instruction;
}
&.construction {
background-color: #FFFFFF;
color: $black;
border: 1px solid $black;
}
&.en-construction {
@extend .construction;
}
&.accepted {
background-color: $green;
}
&.accepte {
@extend .accepted;
}
&.refused {
background-color: $dark-red;
}
&.refuse {
@extend .refused;
}
&.without-continuation {
background-color: $black;
}
&.sans-suite {
@extend .without-continuation;
}
}

View file

@ -30,6 +30,11 @@
}
}
.afficher-dossiers-supprimes {
display: flex;
justify-content: flex-end;
}
.filter {
display: inline-block;
padding-left: 10px;