16 lines
371 B
SCSS
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
|
|
}
|
|
}
|