Style Property for Moderator Bar Links While Hovering?

DRE

Well-known member
Hi. What's the style property for moderator_bar links while hovering over one of the links?
 
There is no property for it, but you can create your own CSS:

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

Code:
#moderatorBar a:hover
{
	text-decoration: none;
	background-color: @primaryDark;
	color: @primaryLighterStill;
}

These are the default attributes. You can change them in your definition.
 
Top Bottom