Skip to content

Commit

Permalink
fix(dropdown): twbs/bootstrap#23329
Browse files Browse the repository at this point in the history
  • Loading branch information
Pooya Parsa committed Aug 11, 2017
1 parent 40a1347 commit fab5d22
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions lib/components/dropdown.vue
Expand Up @@ -70,3 +70,18 @@
}
};
</script>

<style>
.dropdown-item:focus:not(.active),
.dropdown-item:hover:not(.active),
.dropdown-header:focus:not(.active)
.dropdown-header:hover:not(.active) {
/* @See https://github.com/twbs/bootstrap/issues/23329 */
box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .09);
}
.dropdown-item:active,
.dropdown-header:active {
box-shadow: initial;
}
</style>

0 comments on commit fab5d22

Please sign in to comment.