Change cursor to pointer if topbar menu item has no children
authorLaury GvR <laury@gaslightmedia.com>
Tue, 25 Jul 2017 12:49:16 +0000 (08:49 -0400)
committerLaury GvR <laury@gaslightmedia.com>
Tue, 25 Jul 2017 12:49:16 +0000 (08:49 -0400)
css/app.css
scss/_topbar.scss

index 7746663..8858446 100644 (file)
@@ -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;
index 0cc6753..fe45a74 100644 (file)
                 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;