Instantly share code, notes, and snippets.
Last active
August 29, 2019 10:22
-
Star
(0)
0
You must be signed in to star a gist -
Fork
(0)
0
You must be signed in to fork a gist
-
Save fakkio/404046c1bc1fdaf8f98da02422e78445 to your computer and use it in GitHub Desktop.
Bootstrap 4 nested submenus
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bootstrap 4 nested submenus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="navbar-nav"> | |
<li class="nav-item active"> | |
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a> | |
</li> | |
<li class="nav-item dropdown"> | |
<a class="nav-link dropdown-toggle" href="http://example.com" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | |
Dropdown link | |
</a> | |
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink"> | |
<li><a class="dropdown-item" href="#">Action</a></li> | |
<li><a class="dropdown-item" href="#">Another action</a></li> | |
<li class="dropdown-submenu"> | |
<a class="dropdown-item dropdown-toggle" href="#">Submenu</a> | |
<ul class="dropdown-menu"> | |
<li><a class="dropdown-item" href="#">Submenu action</a></li> | |
<li><a class="dropdown-item" href="#">Another submenu action</a></li> | |
<li class="dropdown-submenu"> | |
<a class="dropdown-item dropdown-toggle" href="#">Subsubmenu</a> | |
<ul class="dropdown-menu"> | |
<li><a class="dropdown-item" href="#">Subsubmenu action</a></li> | |
<li><a class="dropdown-item" href="#">Another subsubmenu action</a></li> | |
</ul> | |
</li> | |
<li class="dropdown-submenu"> | |
<a class="dropdown-item dropdown-toggle" href="#">Second subsubmenu</a> | |
<ul class="dropdown-menu"> | |
<li><a class="dropdown-item" href="#">Subsubmenu action</a></li> | |
<li><a class="dropdown-item" href="#">Another subsubmenu action</a></li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
<li class="nav-item dropdown"> | |
<a class="nav-link dropdown-toggle" href="http://example.com" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | |
Dropdown link | |
</a> | |
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownMenuLink"> | |
<li><a class="dropdown-item" href="#">Action</a></li> | |
<li><a class="dropdown-item" href="#">Another action</a></li> | |
<li class="dropdown-submenu"> | |
<a class="dropdown-item dropdown-toggle" href="#">Submenu</a> | |
<ul class="dropdown-menu"> | |
<li><a class="dropdown-item" href="#">Submenu action</a></li> | |
<li><a class="dropdown-item" href="#">Another submenu action</a></li> | |
<li class="dropdown-submenu"> | |
<a class="dropdown-item dropdown-toggle" href="#">Subsubmenu</a> | |
<ul class="dropdown-menu"> | |
<li><a class="dropdown-item" href="#">Subsubmenu action</a></li> | |
<li><a class="dropdown-item" href="#">Another subsubmenu action</a></li> | |
</ul> | |
</li> | |
<li class="dropdown-submenu"> | |
<a class="dropdown-item dropdown-toggle" href="#">Second subsubmenu</a> | |
<ul class="dropdown-menu"> | |
<li><a class="dropdown-item" href="#">Subsubmenu action</a></li> | |
<li><a class="dropdown-item" href="#">Another subsubmenu action</a></li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.dropdown-menu a.dropdown-toggle').on('click', function(e) { | |
if (!$(this).next().hasClass('show')) { | |
$(this).parents('.dropdown-menu').first().find('.show').removeClass('show'); | |
} | |
var $subMenu = $(this).next('.dropdown-menu'); | |
$subMenu.toggleClass('show'); | |
$(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function(e) { | |
$('.dropdown-submenu .show').removeClass('show'); | |
}); | |
return false; | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Standard aligned submenu (i.e. it opens to the right) */ | |
.dropdown-submenu { | |
position: relative; | |
} | |
.dropdown-submenu a::after { | |
transform: rotate(-90deg); | |
position: absolute; | |
right: 6px; | |
top: .8em; | |
} | |
.dropdown-submenu .dropdown-menu { | |
top: 0; | |
left: 100%; | |
margin-left: .1rem; | |
margin-right: .1rem; | |
} | |
/* Right aligned submenu (i.e. it opens to the left) */ | |
.dropdown-menu-right { | |
.dropdown-submenu a::after { | |
transform: rotate(90deg); | |
left: 6px; | |
right: auto; | |
} | |
.dropdown-submenu .dropdown-menu { | |
left: auto; | |
right: 100%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment