Add background animation
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
parent
f0c26846c7
commit
172cc01f7d
|
@ -20,6 +20,12 @@ limitations under the License.
|
|||
flex-direction: column;
|
||||
}
|
||||
|
||||
|
||||
@keyframes mx_RoomView_fileDropTarget_animation {
|
||||
from {opacity: 0;}
|
||||
to {opacity: 0.95;}
|
||||
}
|
||||
|
||||
.mx_RoomView_fileDropTarget {
|
||||
min-width: 0px;
|
||||
width: 100%;
|
||||
|
@ -30,7 +36,8 @@ limitations under the License.
|
|||
|
||||
pointer-events: none;
|
||||
|
||||
background-color: $droptarget-bg-color;
|
||||
background-color: $primary-bg-color;
|
||||
opacity: 0.95;
|
||||
|
||||
position: absolute;
|
||||
z-index: 3000;
|
||||
|
@ -39,6 +46,9 @@ limitations under the License.
|
|||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
animation: mx_RoomView_fileDropTarget_animation;
|
||||
animation-duration: 0.5s;
|
||||
}
|
||||
|
||||
@keyframes mx_RoomView_fileDropTarget_image_animation {
|
||||
|
|
Loading…
Reference in New Issue