Skip to content

Commit

Permalink
[MRI Violations] Improved UI (#8682)
Browse files Browse the repository at this point in the history
 The current way the violations are resolved is not very user friendly. Improve feedback and an update of the resolution status column once the resolution is selected.

Fixes #8670
  • Loading branch information
laemtl authored May 2, 2023
1 parent cb67330 commit 5d929ad
Show file tree
Hide file tree
Showing 4 changed files with 371 additions and 366 deletions.
16 changes: 16 additions & 0 deletions htdocs/bootstrap/css/custom-css.css
Original file line number Diff line number Diff line change
Expand Up @@ -912,3 +912,19 @@ legend {
font-size: 14px;
color: #064785;
}

@keyframes highlight {
0% {
background-color: transparent;
}
50% {
background-color: #FEF2CA;
}
100% {
background-color: transparent;
}
}

.highlighted {
animation: highlight ease 3s;
}
2 changes: 1 addition & 1 deletion jsx/FilterableDataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ FilterableDataTable.propTypes = {
updateFilterCallback: PropTypes.func,
noDynamicTable: PropTypes.bool,
loading: PropTypes.element,
getMappedCell: PropTypes.array,
getMappedCell: PropTypes.func,
folder: PropTypes.element,
nullTableShow: PropTypes.element,
children: PropTypes.node,
Expand Down
Loading

0 comments on commit 5d929ad

Please sign in to comment.