Skip to content

Instantly share code, notes, and snippets.

@rupl
Created June 1, 2012 21:24
Show Gist options
  • Save rupl/2855217 to your computer and use it in GitHub Desktop.
Save rupl/2855217 to your computer and use it in GitHub Desktop.
SASS
// SASS
.header-main ul.inline li {
& a:hover {
background-color: $dkblue;
}
&.active-trail a {
background-color: $dkblue;
}
}
//CSS
.header-main ul.inline li a:hover,
.header-main ul.inline li.active-trail a {
background-color: $dkblue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment