adjusting box shadow on hover for dropdown elements
authorAnthony Talarico <talarico@gaslightmedia.com>
Thu, 3 Dec 2015 15:24:03 +0000 (10:24 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Thu, 3 Dec 2015 15:24:03 +0000 (10:24 -0500)
css/app.css
js/app.js
js/custom/pageSetup.js
scss/_topbar.scss

index 9fe6d93..bc0a83f 100644 (file)
@@ -6952,13 +6952,6 @@ header .searchform input[type="submit"]:hover {
 #linkHome, #linkHome a {
   margin-right: 5px; }
 
-@supports (overflow: -webkit-marquee) and (justify-content: inherit) {
-  .safari_only #resform {
-    right: -1px !important;
-    bottom: -296px !important; }
-  .safari_only #res-tab-open:after {
-    left: -3px !important; } }
-
 .breadcrumbs {
   margin-top: 10px; }
 
index c80dab2..005c730 100644 (file)
--- a/js/app.js
+++ b/js/app.js
@@ -208,7 +208,8 @@ $(document).ready(function () {
         return $(this).text().replace(/(<([^>]+)>)/ig, "");
     });
     
-    
-
-
+    $("#properties .top-bar .top-bar-section ul#menu-properties ul.dropdown li a").mouseover(function () {
+        $("#properties .top-bar .top-bar-section ul#menu-properties li a").css("box-shadow", "none");
+    });
+   
 });
index 84a8d74..3ba8f07 100644 (file)
@@ -199,7 +199,8 @@ $(document).ready(function () {
         return $(this).text().replace(/(<([^>]+)>)/ig, "");
     });
     
-    
-
-
+    $("#properties .top-bar .top-bar-section ul#menu-properties ul.dropdown li a").mouseover(function () {
+        $("#properties .top-bar .top-bar-section ul#menu-properties li a").css("box-shadow", "none");
+    });
+   
 });
index 493e36c..79e56d1 100644 (file)
                                 line-height: 1.4;
                                 letter-spacing: normal;
                                 &:hover {
-                                    font-weight: bold;
+                                  font-weight: bold;
+                                    
                                 }
                             }
                         }
 #linkHome, #linkHome a{
    margin-right: 5px;
 }
-@supports (overflow:-webkit-marquee) and (justify-content:inherit) 
-{
-
-    .safari_only {
-        #resform{
-            right: -1px !important;
-            bottom: -296px !important;
-        }
-        #res-tab-open{
-            &:after{
-                left: -3px !important;
-            }
-        }
-    }
-
-}