Symantec Identity Portal - Disable Send Notifications and Select All buttons.
search cancel

Symantec Identity Portal - Disable Send Notifications and Select All buttons.

book

Article ID: 277830

calendar_today

Updated On:

Products

CA Identity Portal

Issue/Introduction

We would like to know how we can disable the notify reviewers option on the managed campaign screen as managers are continuously flooded with more and more email notifications.

Environment

Identity Portal 14.4, 14.5

Resolution


The elements described below were found using the browser Dev tools:

 

Once the elements are located using the Dev follow the Branding documentation for applying branding with the below settings.   

"Select all" button: 
CSS Selector Name: button.md-button.ng-scope.md-ink-ripple.md-primary
Attribute: display
Value: none

"Notify selected" button:
CSS Selector Name:  button.md-raised.md-primary.md-button.md-ink-ripple
Attribute: display
Value: none


This will completely remove all Buttons from the campaign view in the Portal.   If the goal is to only remove from the Manage Campaign area, then the CSS change requires that you restrict the class so it can be more specific by adding [attribute=value] to the class selector name. 

For example, we can use the following to hide the buttons from the 

 
"Select all" button: 
CSS Selector Name: button.md-button.ng-scope.md-ink-ripple.md-primary[ng-click="notifyToggleSelectAll()"]
Attribute: display
Value: none
 
"Notify selected" button:
CSS Selector Name: button.md-raised.md-primary.md-button.md-ink-ripple[ng-disabled="!notifyCount"]
Attribute: display
Value: none



Additional Information

This KB discusses Customizations.  This information is being provided as-is to help understand how to use the CSS configuration under Branding to change the look and behavior of the Portal.