Skip to content

Commit

Permalink
Also transition filter properties
Browse files Browse the repository at this point in the history
Prepare for #94
  • Loading branch information
JoryHogeveen committed Jun 29, 2020
1 parent 76da3c7 commit 0578e20
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions css/off-canvas-sidebars.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ body,
-ms-transform: none;
-o-transform: none;
transform: none;
-webkit-transition: -webkit-transform 300ms, top 300ms, bottom 300ms, left 300ms, right 300ms;
-moz-transition: -moz-transform 300ms, top 300ms, bottom 300ms, left 300ms, right 300ms;
-o-transition: -o-transform 300ms, top 300ms, bottom 300ms, left 300ms, right 300ms;
transition: transform 300ms, top 300ms, bottom 300ms, left 300ms, right 300ms;
-webkit-transition: -webkit-transform 300ms, -webkit-filter 300ms, top 300ms, bottom 300ms, left 300ms, right 300ms, clip-path 0ms;
-moz-transition: -moz-transform 300ms, filter 300ms, top 300ms, bottom 300ms, left 300ms, right 300ms, clip-path 0ms;
-o-transition: -o-transform 300ms, filter 300ms, top 300ms, bottom 300ms, left 300ms, right 300ms, clip-path 0ms;
transition: transform 300ms, filter 300ms, top 300ms, bottom 300ms, left 300ms, right 300ms, clip-path 0ms;
}


Expand Down
4 changes: 2 additions & 2 deletions slidebars/slidebars.css
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ html, body {
-webkit-transform: translate( 0px, 0px );
-ms-transform: translate( 0px, 0px );
transform: translate( 0px, 0px );
-webkit-transition: -webkit-transform 300ms;
transition: transform 300ms;
-webkit-transition: -webkit-transform 300ms, -webkit-filter 300ms;
transition: transform 300ms, filter 300ms;
-webkit-backface-visibility: hidden; /* Prevents flickering, may be removed if experiencing problems with fixed background images in Chrome. */
}

Expand Down

0 comments on commit 0578e20

Please sign in to comment.