From: Laury GvR Date: Tue, 25 Jul 2017 12:49:16 +0000 (-0400) Subject: Change cursor to pointer if topbar menu item has no children X-Git-Tag: v1.0.0^2~23 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=ada755a4d1b88e1b3b22147c4a7f8ca22819473f;p=WP-Themes%2Ftruenorthgolf.git Change cursor to pointer if topbar menu item has no children --- diff --git a/css/app.css b/css/app.css index 7746663..8858446 100644 --- a/css/app.css +++ b/css/app.css @@ -6954,8 +6954,10 @@ video { text-transform: uppercase; font-family: "Montserrat", sans-serif; letter-spacing: 1px; } - .top-bar-section > div > ul > li > a:hover { + .top-bar-section > div > ul > li.menu-item-has-children > a:hover { cursor: default; } + .top-bar-section > div > ul > li > a:hover { + cursor: pointer; } .top-bar-section > div > ul > li:hover { border-width: 0 0 3px; border-color: #b32024; diff --git a/scss/_topbar.scss b/scss/_topbar.scss index 0cc6753..fe45a74 100644 --- a/scss/_topbar.scss +++ b/scss/_topbar.scss @@ -144,9 +144,12 @@ font-family: "Montserrat", sans-serif; letter-spacing: 1px; } - > a:hover { + &.menu-item-has-children > a:hover { cursor: default; } + > a:hover { + cursor: pointer; + } } > li:hover { border-width: 0 0 3px;