Media Grid: Remove CSS transition from inline uploader.

props ericlewis.
fixes #28840.
see #28851.

git-svn-id: https://develop.svn.wordpress.org/trunk@29131 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2014-07-13 10:43:32 +00:00
parent d198c0bdd5
commit 39fe2b445c

View File

@ -1000,21 +1000,14 @@
bottom: 0;
overflow: auto;
outline: none;
-webkit-transition: 1s ease-in-out;
transition: 1s ease-in-out;
}
.attachments-browser .uploader-inline:not(.hidden) + .attachments {
-webkit-transform: translateY( 300px );
-ms-transform: translateY( 300px );
transform: translateY( 300px );
top: 350px;
}
.attachments-browser .uploader-inline.hidden {
display: block;
-webkit-transform: translateY( -100% );
-ms-transform: translateY( -100% );
transform: translateY( -100% );
display: none;
}
.attachments-browser .uploader-inline-content {