From: Anthony Talarico Date: Tue, 10 Apr 2018 18:15:17 +0000 (-0400) Subject: removing ease in out from transitions X-Git-Tag: v1.0.0^2~49 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=f2cb7742155f625db5977667d6fc462e4e840556;p=WP-Themes%2Fdiscoverkalamazoo2018.git removing ease in out from transitions changing the easing for transitions of oc menu --- diff --git a/css/app.css b/css/app.css index 8782c21..c7f20a8 100644 --- a/css/app.css +++ b/css/app.css @@ -8071,7 +8071,7 @@ aside.oc-overlay .off-canvas-list ul li > ul li > a { left: 0; height: 100vh; background-color: #57b649; - transition: top 500ms ease-in-out, opacity 500ms ease-in-out; } + transition: top 500ms ease, opacity 500ms ease; } .oc-overlay ul.children li a { color: white; } @media only screen and (min-width:64.063em) { @@ -8220,7 +8220,7 @@ body .oc-primary-nav { .sub-menu-section > li.menu-item { opacity: 1; - transition: padding 400ms ease-in-out, max-height 400ms ease-in-out; + transition: padding 400ms ease, max-height 400ms ease; background: rgba(255, 255, 255, 0); padding-left: 32px !important; position: relative; } diff --git a/scss/_off-canvas.scss b/scss/_off-canvas.scss index 1f33ee4..ade4ecb 100644 --- a/scss/_off-canvas.scss +++ b/scss/_off-canvas.scss @@ -99,7 +99,7 @@ aside.oc-overlay .off-canvas-list ul li > ul li > a { left:0; height: 100vh; background-color: $green; - transition: top 500ms ease-in-out, opacity 500ms ease-in-out; + transition: top 500ms ease, opacity 500ms ease; li{ a{ color: white; @@ -268,7 +268,7 @@ body{ .sub-menu-section > li.menu-item{ // max-height: 2rem; opacity: 1; - transition: padding 400ms ease-in-out, max-height 400ms ease-in-out; + transition: padding 400ms ease, max-height 400ms ease; background: rgba($white, 0); padding-left: 32px !important;