Project Workspace, band color modification

ramilo
Kilo Contributor

I would like to change the color of the band lets say if status is green, the color would be dark green instead of green or yellow would appear like orange(amber). Can someone please tell me where is the code of this page? Thank you.find_real_file.png

1 ACCEPTED SOLUTION

Harsha Lanka
ServiceNow Employee
ServiceNow Employee

1) Go to "pm_home_cards" UI macro.

2) Add custom styles in <style></style> tags.

Example:

#sn-pm-home .home-cards .card.yellow {

   border-top4px solid <some_hex_code> !important;

}

#sn-pm-home .home-cards .card.green {

   border-top4px solid <some_hex_code> !important;

}

#sn-pm-home .home-cards .card.red {

   border-top4px solid <some_hex_code> !important;

}


View solution in original post

12 REPLIES 12

Ravi T
Tera Guru

Hi Ramilo,

   
Navigate to Project Administration > Settings > Resource Event Colors. Select an Event type 
 and change the color .Hope it wroks
 
 

Warm Regards,

Ravindra 

 

Harsha Lanka
ServiceNow Employee
ServiceNow Employee

1) Go to "pm_home_cards" UI macro.

2) Add custom styles in <style></style> tags.

Example:

#sn-pm-home .home-cards .card.yellow {

   border-top4px solid <some_hex_code> !important;

}

#sn-pm-home .home-cards .card.green {

   border-top4px solid <some_hex_code> !important;

}

#sn-pm-home .home-cards .card.red {

   border-top4px solid <some_hex_code> !important;

}


Thank you. This one works.

Hi, wondering if it's possible to apply CSS to the bullet between the dates on these cards. I'm not a CSS expert so any advice would be appreciated!