Skip to content

Commit

Permalink
pointer cursor for nav-links
Browse files Browse the repository at this point in the history
  • Loading branch information
dev7ch committed Jul 24, 2017
1 parent 2162438 commit 5f9017d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/admin/src/resources/dist/css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -10719,6 +10719,11 @@ input[type="radio"] {
.tab-padding-right {
padding-right: 15px !important; }

.nav-link {
cursor: pointer; }
.nav-link:hover, .nav-link .active:hover {
cursor: pointer; }

.nav-item-alternative {
margin-left: 10px; }
.nav-item-alternative .nav-link {
Expand Down
8 changes: 8 additions & 0 deletions modules/admin/src/resources/scss/components/_nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@
padding-right: $nav-link-padding-horizontal !important;
}

.nav-link {
cursor: pointer;

&:hover, .active:hover {
cursor: pointer;
}
}

.nav-item-alternative {
margin-left: 10px;

Expand Down

0 comments on commit 5f9017d

Please sign in to comment.