Policies.
It turns out there is already color differentiation between enabled and disabled polices, but it’s not very obvious.
This CSS will make it stark: showing enabled policies as green, and disabled polices as an exceptionally pleasant pastel red. The hex codes can be amended of course to suit your needs.
/*
Policies
Provides more obvious color differentiation
Green - enabled, Red - disabled
*/
div.policies-list tr div span.policy-option, div.policies-list tr div span.policy-description{
color: #00c04b!important;
}
div.policies-list tr.inactive div span.policy-option, div.policies-list tr.inactive div span.policy-description{
color: #ff7f7f!important;
}