Files
essence/scss/bootstrap/_dropdown.scss
2021-10-21 20:42:15 -05:00

16 lines
371 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;
}
}
.dropdown-header {
border-left: 4px solid transparent; // Align headers with items
}
}