For those that have upgraded to NPM 12 and using Message Center, you may have noticed row background color no longer colors the entire row.
Get a copy of this change plus more here: NPM 12 Message Center mod
I have jquery code update that can be added to the file C:\inetpub\SolarWinds\Orion\NetPerfMon\OrionMessages.aspx
This code will update the background color for the entire row.
At the bottom of the file there is a section that starts:
<script type="text/javascript">
Add this code right after that line and the row colors will once again be colored.
<script type="text/javascript"> $('div.event-icon').each(function () { var $tr = $(this).closest('tr'); var $color = $(this).css( 'background-color' ); $tr.css('background-color', $color); });
Here is the before and the after:
Before:
After: