Media Grid: Remove CSS transition from inline uploader.
props ericlewis. fixes #28840. see #28851. Built from https://develop.svn.wordpress.org/trunk@29131 git-svn-id: http://core.svn.wordpress.org/trunk@28916 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e398ae8161
commit
bef6fab4c6
|
@ -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 {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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 {
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue