File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,15 @@ tr.shown td.more-info-processing-jobs {
24
24
background : url ('../img//details_close.png' ) no-repeat center center;
25
25
}
26
26
27
+ .blinking-message {
28
+ animation : blinker 2s linear infinite;
29
+ }
30
+
31
+ @keyframes blinker {
32
+ 50% { opacity : 0.3 ; background : # CCC ;}
33
+ 100% { opacity : 1.0 ; background : # FFF ;}
34
+ }
35
+
27
36
/* table in the study description that holds the investigation type elements */
28
37
.investigation-type-table td {
29
38
padding-top : 6px ;
Original file line number Diff line number Diff line change 33
33
< td class ="progress-pause " nowrap ="nowrap ">
34
34
35
35
< a href ="# " onclick ="uploader.resumable.upload(); return(false); " class ="progress-resume-link "> < span class ="glyphicon glyphicon-play "> </ span > </ a >
36
-
36
+
37
37
< a href ="# " onclick ="uploader.resumable.pause(); return(false); " class ="progress-pause-link "> < span class ="glyphicon glyphicon-pause "> </ span > </ a >
38
38
</ td >
39
39
</ tr >
40
+ < tr >
41
+ < td colspan ="3 ">
42
+ < div class ="blinking-message ">
43
+ Keep track of your upload or pause/resume it! < span class ="glyphicon glyphicon-arrow-up "> </ span >
44
+ < br />
45
+ < small > (you can even close your computer or change networks!)</ small >
46
+ </ div >
47
+ </ td >
48
+ < tr >
40
49
</ table >
41
50
</ div >
42
51
You can’t perform that action at this time.
0 commit comments