Vulcan/packages/telescope-theme-base/lib/client/scss/specific/_dropdown.scss
Anthony Mayer 30ca412921 Compiling scss as part of build rather than with compass.
Remove dependency on compass, add fourseven:scss (includes autoprefixer),
add reset package, delete compiled css, and some random scss cleanup.
2014-11-23 21:11:15 -08:00

53 lines
No EOL
908 B
SCSS

.has-dropdown .dropdown{
position:relative;
>a{
&:after{
display:inline-block;
position:relative;
top:-1px;
margin-left:4px;
content:"";
font-size:8px;
}
}
&:hover{
.dropdown-menu{
display:block;
}
}
}
.has-dropdown .dropdown-menu{
display:none;
top:10px;
left:10px;
position:absolute;
padding-top:20px;
z-index: 10000;
&, a, a:link, a:visited{
color: $text;
}
a.button{
color: white;
}
ul{
background:white;
padding:10px;
min-width:140px;
border-radius: 3px;
box-shadow: 0 1px 3px black(0.35);
list-style-type: none;
li{
padding-bottom: 10px;
margin-bottom: 10px;
border-bottom: 1px solid #eeeeee;
&:last-child{
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
a{
font-size:14px;
}
}
}
}