hover color in account popup on navigation?

anotheralias

Well-known member
I've spent two hours searching for it with no luck. Does anybody happen to know offhand what template it's in? I'm talking about the color that shows when you hover over something in the 'your account' popup on the right side of navigation. Thanks for reading this!

account_hover.gif
 
Admin CP -> Appearance -> Style Properties -> Color Palette -> @primaryLighterStill

Or edit this template:

Admin CP -> Appearance -> Templates -> xenforo.css

Code:
		.blockLinksList a:hover,
		.blockLinksList a:focus,
		.blockLinksList label:hover,
		.blockLinksList label:focus
		{
			background-color: @primaryLighterStill;
			text-decoration: none;
		}
 
Top Bottom