Removed bounding for thumb zoomIn and zoomOut

This commit is contained in:
Tobias Reich 2014-03-16 19:28:24 +01:00
parent 41862b8c8b
commit 0e785c7c80
2 changed files with 7 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@ -37,29 +37,29 @@
-webkit-animation-name: zoomIn; -webkit-animation-name: zoomIn;
-webkit-animation-duration: .2s; -webkit-animation-duration: .2s;
-webkit-animation-fill-mode: forwards; -webkit-animation-fill-mode: forwards;
-webkit-animation-timing-function: cubic-bezier(0.51,.92,.24,1.15); -webkit-animation-timing-function: cubic-bezier(0.51,.92,.24,1);
-moz-animation-name: zoomIn; -moz-animation-name: zoomIn;
-moz-animation-duration: .2s; -moz-animation-duration: .2s;
-moz-animation-fill-mode: forwards; -moz-animation-fill-mode: forwards;
-moz-animation-timing-function: cubic-bezier(0.51,.92,.24,1.15); -moz-animation-timing-function: cubic-bezier(0.51,.92,.24,1);
animation-name: zoomIn; animation-name: zoomIn;
animation-duration: .2s; animation-duration: .2s;
animation-fill-mode: forwards; animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(0.51,.92,.24,1.15); } animation-timing-function: cubic-bezier(0.51,.92,.24,1); }
.contentZoomOut { .contentZoomOut {
-webkit-animation-name: zoomOut; -webkit-animation-name: zoomOut;
-webkit-animation-duration: .2s; -webkit-animation-duration: .2s;
-webkit-animation-fill-mode: forwards; -webkit-animation-fill-mode: forwards;
-webkit-animation-timing-function: cubic-bezier(0.51,.92,.24,1.15); -webkit-animation-timing-function: cubic-bezier(0.51,.92,.24,1);
-moz-animation-name: zoomOut; -moz-animation-name: zoomOut;
-moz-animation-duration: .2s; -moz-animation-duration: .2s;
-moz-animation-fill-mode: forwards; -moz-animation-fill-mode: forwards;
-moz-animation-timing-function: cubic-bezier(0.51,.92,.24,1.15); -moz-animation-timing-function: cubic-bezier(0.51,.92,.24,1);
animation-name: zoomOut; animation-name: zoomOut;
animation-duration: .2s; animation-duration: .2s;
animation-fill-mode: forwards; animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(0.51,.92,.24,1.15); } animation-timing-function: cubic-bezier(0.51,.92,.24,1); }
/* moveUp ------------------------------------------------*/ /* moveUp ------------------------------------------------*/
@-webkit-keyframes moveUp { @-webkit-keyframes moveUp {