Files
essence/scss/bootstrap/_dropdown.scss
2021-10-21 20:39:13 -05:00

10 lines
259 B
SCSS

// Place a nice stripe to the left of hovered dropdown menu items
.dropdown-menu .dropdown-item {
border-left: 4px solid transparent;
transition: background-color .1s linear, border .1s linear;
&:hover {
border-left-color: $yellow; // $info;
}
}