Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
accgit committed Oct 5, 2020
1 parent a219351 commit f513e2e
Show file tree
Hide file tree
Showing 9 changed files with 1,510 additions and 493 deletions.
30 changes: 27 additions & 3 deletions demo/dark.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</header>

<div class="d-flex wrapper wrapper-navbar-used wrapper-navbar-fixed">
<nav role="navigation" class="sidebar sidebar-bg-dark sidebar-rounded-top-right shadow-box" id="navigation">
<nav role="navigation" class="sidebar sidebar-bg-dark sidebar-rounded-top-right shadow" id="navigation">

<!-- sidebar -->
<div class="sidebar-menu">
Expand All @@ -40,7 +40,7 @@
<div class="sidebar-menu-fixed">

<!-- menu scrollbar -->
<div class="scrollbar scrollbar-bg-dark">
<div class="scrollbar scrollbar-use-navbar scrollbar-bg-dark">

<!-- menu -->
<ul class="list list-unstyled list-bg-dark mb-0">
Expand Down Expand Up @@ -169,6 +169,28 @@
</ul>
</li>
</ul>

<!-- menu -->
<ul class="list list-unstyled list-bg-dark mb-0">

<li class="list-item">

<!-- list title -->
<p class="list-title text-uppercase">User logged</p>

<!-- list items, first level -->
<ul class="list-unstyled">
<li><a href="#" class="list-link link-arrow text-uppercase"><span class="list-icon"><i class="far fa-user"></i></span>S. Karlos</a>

<!-- list items, second level -->
<ul class="list-unstyled list-hidden">
<li><a href="#" class="list-link">Your profil</a></li>
<li><a href="#" class="list-link">Logout</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
Expand All @@ -191,7 +213,9 @@
<script>
$(function() {
new Nanobar().go(100);
new PerfectScrollbar('.scrollbar');
new PerfectScrollbar('.scrollbar', {
wheelSpeed: 0.3
});
});
</script>

Expand Down
8 changes: 5 additions & 3 deletions demo/white.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</header>

<div class="d-flex wrapper wrapper-navbar-used wrapper-navbar-fixed">
<nav role="navigation" class="sidebar sidebar-bg-white sidebar-rounded-top-right shadow-box" id="navigation">
<nav role="navigation" class="sidebar sidebar-bg-white sidebar-rounded-top-right shadow" id="navigation">

<!-- sidebar -->
<div class="sidebar-menu">
Expand All @@ -40,7 +40,7 @@
<div class="sidebar-menu-fixed">

<!-- menu scrollbar -->
<div class="scrollbar scrollbar-bg-white">
<div class="scrollbar scrollbar-use-navbar scrollbar-bg-white">

<!-- menu -->
<ul class="list list-unstyled list-bg-white mb-0">
Expand Down Expand Up @@ -191,7 +191,9 @@
<script>
$(function() {
new Nanobar().go(100);
new PerfectScrollbar('.scrollbar');
new PerfectScrollbar('.scrollbar', {
wheelSpeed: 0.3
});
});
</script>

Expand Down
Loading

0 comments on commit f513e2e

Please sign in to comment.