You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
374 B
26 lines
374 B
// Dropdowns
|
|
.dropdown {
|
|
.dropdown-menu {
|
|
.dropdown-item {
|
|
&:active {
|
|
background-color: $grey-darken-1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.dropdown-submenu {
|
|
position: relative;
|
|
|
|
& >.dropdown-menu {
|
|
top: 0;
|
|
left: 100%;
|
|
margin-top: -6px;
|
|
margin-left: 1px;
|
|
border-radius: 0 6px 6px 6px;
|
|
}
|
|
|
|
&:hover>.dropdown-menu {
|
|
display: block;
|
|
}
|
|
}
|
|
|