Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chrisfromredfin/23973ea8fb9d101c04d43f181b849deb to your computer and use it in GitHub Desktop.
Save chrisfromredfin/23973ea8fb9d101c04d43f181b849deb to your computer and use it in GitHub Desktop.
SASS for Sanitizing Drupal's $tabs
ul.tabs {
border-bottom: 0;
white-space: normal;
line-height: 1.6em;
padding: 0;
margin: 0;
li {
a {
border-style: solid;
white-space: nowrap;
margin-right: .1em;
&:hover {
border-bottom-color: #ccc;
}
}
&.active a {
border-bottom: 1px solid #bbb;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment