Employee Center Loading Dots in Header Menu

Steven Parker
Giga Sage

I noticed today that the loading dots in our Employee Center header menu are black.  In our Service Portal, they are white.

 

How can I modify the CSS in the EC Theme (I've been using the global style sheet) to change the color of the loading dots to white?

 

Not sure I am identifying the right class when trying to do this

	.navbar-nav {
		.header-loader {
	  	color: #ffffff  !important; /* Adjust color as needed */
		}
	}

Please mark this response as correct and/or helpful if it assisted you with your question.
Steven
1 ACCEPTED SOLUTION

Rajat Gupta6
Tera Guru
.sp-loading-indicator {
color: #fff;
}
 
RajatGupta6_0-1746645667565.png

 

Please accept my solution if it works for you and thumps up.

View solution in original post

2 REPLIES 2

Rajat Gupta6
Tera Guru
.sp-loading-indicator {
color: #fff;
}
 
RajatGupta6_0-1746645667565.png

 

Please accept my solution if it works for you and thumps up.

Thanks!  I stared at that class in the Widget, but didn't use it.  Couldn't figure out how to inspect the 3 dots as they disappear so quickly.  Your answer works!


Please mark this response as correct and/or helpful if it assisted you with your question.
Steven