Skip to content

Commit

Permalink
fix(nav-item-dropdown): Fix focus/hover custom CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorehouse committed Aug 12, 2017
1 parent 0cbbfb5 commit e38576c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/components/nav-item-dropdown.vue
Expand Up @@ -67,12 +67,12 @@
</script> </script>


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

0 comments on commit e38576c

Please sign in to comment.