Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

AVEVA™ Work Tasks

Change Font Style Based on the Status of the Work Item

Change Font Style Based on the Status of the Work Item

  • Last UpdatedJun 10, 2024
  • 1 minute read

Font Style of the item can be changed in the Work Item list based on the different status or states. You need to make changes in the global.css style sheet.

  • When the task is in Normal state that is if there is nothing to act on that activity then all those activities fonts are kept under .WLNormal tag. For example, if it is Information activity, change background color as red.

  • Do the following change in the .WLNormal tag

    .WLNormal

    {

     background-color:Red;

     font-size:7pt;

     font-family:Segoe UI,Verdana;

     font-weight:normal;

          }

  • You can change the background color, when the task is in Awaiting state. For example, when the task is in Awaiting state, change the background color as green.

  • Do the following change in the .WLAwaiting tag:

    .WLAwaiting

    {

     font-size:7pt;

     font-family:Segoe UI,Verdana;

     font-weight:300;

     background-color:Green;

    }

  • You can change the background color, when the task is in Planned state. For example, when the task is in Planned state from queue, change the background color as aqua.

  • Do the following change in the .WLPlannedQueueItem tag.

    .WLPlannedQueueItem

    {

     font-size:7pt;

     font-family:Segoe UI,Verdana;

     font-weight:normal;

     background-color:Aqua;

    }

  • You can change the background color, when the task is in Hold state. For example, when the task is in Hold state, change the background color to Blue.

  • Do the following change in the .WLHold tag.

    .WLHold

    {

     font-size:7pt;

     font-family:Verdana;

     font-weight:normal;

     background-color:Blue;

    }

TitleResults for “How to create a CRG?”Also Available in