Adds three new security record colours (#14966)

This commit is contained in:
SabreML
2020-11-25 23:52:57 -05:00
committed by GitHub
parent e8031d165e
commit 82e29c1c3c
4 changed files with 25 additions and 6 deletions
@@ -15,6 +15,9 @@ const statusStyles = {
"Incarcerated": "incarcerated",
"Parolled": "parolled",
"Released": "released",
"Demote": "demote",
"Search": "search",
"Monitor": "monitor",
};
const doEdit = (context, field) => {
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -19,18 +19,34 @@
}
}
.SecurityRecords__listRow--arrest {
background-color: colors.bg(#890e26);
}
.SecurityRecords__listRow--execute {
background-color: colors.bg(#7a49a5);
}
.SecurityRecords__listRow--arrest {
background-color: colors.bg(#890E26);
.SecurityRecords__listRow--incarcerated {
background-color: colors.bg(#743b03);
}
.SecurityRecords__listRow--incarcerated, .SecurityRecords__listRow--parolled {
background-color: colors.bg(#743B03);
.SecurityRecords__listRow--parolled {
background-color: colors.bg(#008091);
}
.SecurityRecords__listRow--released {
background-color: colors.bg(#216489);
}
.SecurityRecords__listRow--demote {
background-color: colors.bg(#196400);
}
.SecurityRecords__listRow--search {
background-color: colors.bg(#b38f00);
}
.SecurityRecords__listRow--monitor {
background-color: colors.bg(#251496);
}