From 0d078e48ce71d35bf240ec2b3d48a37f1b96115a Mon Sep 17 00:00:00 2001 From: pdessauw Date: Thu, 19 Jun 2014 14:11:57 -0400 Subject: Highlight every uploaded files and scroll down to the last one --- apps/files/css/upload.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'apps/files/css') diff --git a/apps/files/css/upload.css b/apps/files/css/upload.css index bdc258b5064..98754b910de 100644 --- a/apps/files/css/upload.css +++ b/apps/files/css/upload.css @@ -137,3 +137,27 @@ .oc-dialog .oc-dialog-buttonrow .cancel { float:left; } + +.highlightUploaded { + -webkit-animation: highlightAnimation 2s 1; + -moz-animation: highlightAnimation 2s 1; + -o-animation: highlightAnimation 2s 1; + animation: highlightAnimation 2s 1; +} + +@-webkit-keyframes highlightAnimation { + 0% { background-color: rgba(255, 255, 140, 1); } + 100% { background-color: rgba(0, 0, 0, 0); } +} +@-moz-keyframes highlightAnimation { + 0% { background-color: rgba(255, 255, 140, 1); } + 100% { background-color: rgba(0, 0, 0, 0); } +} +@-o-keyframes highlightAnimation { + 0% { background-color: rgba(255, 255, 140, 1); } + 100% { background-color: rgba(0, 0, 0, 0); } +} +@keyframes highlightAnimation { + 0% { background-color: rgba(255, 255, 140, 1); } + 100% { background-color: rgba(0, 0, 0, 0); } +} -- cgit v1.2.3