Disable hover background color on esc portal

Ankita Gupte
Kilo Sage

I am trying to disable hover background colour. I do not want any hover color. Please help to remove the same

AnkitaGupte_0-1717438651005.png

 

1 ACCEPTED SOLUTION

Mark Roethof
Tera Patron
Tera Patron

Hi there,

 

I think its in the header widget code itself, doing a hover and with x darker than the origin color. If you for example update the divider color in the Theme record, you would notice that automatically also the hover is changing.

 

Don't know if its the best method, just came up with this in a minute, adding CSS to the CSS Variables field of the Portal record and works (on a fresh PDI with Employee Center):

 

.v045301ddeb503010ed7966d647522844 .employee-center-navigation .navigation-menu-item:hover {
	background-color:transparent !important;
}

 

Kind regards,

 

Mark Roethof

Independent ServiceNow Consultant

10x ServiceNow MVP

---

 

~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

LinkedIn

View solution in original post

3 REPLIES 3

Mark Roethof
Tera Patron
Tera Patron

Hi there,

 

I think its in the header widget code itself, doing a hover and with x darker than the origin color. If you for example update the divider color in the Theme record, you would notice that automatically also the hover is changing.

 

Don't know if its the best method, just came up with this in a minute, adding CSS to the CSS Variables field of the Portal record and works (on a fresh PDI with Employee Center):

 

.v045301ddeb503010ed7966d647522844 .employee-center-navigation .navigation-menu-item:hover {
	background-color:transparent !important;
}

 

Kind regards,

 

Mark Roethof

Independent ServiceNow Consultant

10x ServiceNow MVP

---

 

~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

LinkedIn

Hi Mark,

 

It is working for taxonomy menu (highlighted in yellow) but not for the menu (highlighted red) which is next to search bar

 

AnkitaGupte_1-1717498495061.png

 

 

Sid_Takali
Kilo Patron
Kilo Patron

Hi @Ankita Gupte Add below code 

.employee-center-navigation .navigation-menu-item:hover {
	background-color:transparent !important;
}

 

Regards,

Sid