Skip to content

Instantly share code, notes, and snippets.

@tessalt
Created February 17, 2013 19:36
Show Gist options
  • Save tessalt/4973014 to your computer and use it in GitHub Desktop.
Save tessalt/4973014 to your computer and use it in GitHub Desktop.
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
list-style: none;
z-index: 15;
&.show {
display: block;
}
a {
display: block;
}
}
.dropdown-popover {
top: 170%;
background: white;
border: 1px solid #c1c1c1;
padding: 10px 15px;
border-radius: 5px;
@include box-shadow(0 1px 6px rgba(0,0,0,.25));
@include caret-top(11px, #c1c1c1, -12px, 50%);
@include caret-top-alt(10px, white, -10px, 50%);
&:before {
z-index: 10;
margin-left: -6px;
}
&:after {
z-index: 11;
margin-left: -5px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment