mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
46 lines
728 B
SCSS
46 lines
728 B
SCSS
@import '../constants/colors';
|
|
@import '../constants/dimensions';
|
|
|
|
.dropdown {
|
|
position: relative;
|
|
display: block;
|
|
height: 100%;
|
|
|
|
&.dropdown--open ul {
|
|
display: block;
|
|
}
|
|
|
|
&.dropdown--right ul {
|
|
right: 0;
|
|
left: auto;
|
|
}
|
|
|
|
ul {
|
|
position: absolute;
|
|
left: 0;
|
|
display: none;
|
|
z-index: 10;
|
|
width: 180px;
|
|
border-radius: $radius-md;
|
|
padding: 2px 0;
|
|
margin-top: 4px;
|
|
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
a, button {
|
|
font-size: $font-size-md;
|
|
text-align: left;
|
|
padding: 10px $padding-md;
|
|
width: 100%;
|
|
display: block;
|
|
|
|
&:hover {
|
|
background: $hl-xs;
|
|
}
|
|
|
|
&:active {
|
|
background: $hl-md;
|
|
}
|
|
}
|
|
}
|
|
}
|