From ada755a4d1b88e1b3b22147c4a7f8ca22819473f Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Tue, 25 Jul 2017 08:49:16 -0400 Subject: [PATCH] Change cursor to pointer if topbar menu item has no children --- css/app.css | 4 +++- scss/_topbar.scss | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) 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; -- 2.17.1