Skip to content

Commit b4f1b1f

Browse files
committed
fix #503
1 parent 599bcde commit b4f1b1f

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

qiita_pet/static/css/style.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@ tr.shown td.more-info-processing-jobs {
2424
background: url('../img//details_close.png') no-repeat center center;
2525
}
2626

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+
2736
/* table in the study description that holds the investigation type elements */
2837
.investigation-type-table td {
2938
padding-top: 6px;

qiita_pet/templates/upload.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,19 @@
3333
<td class="progress-pause" nowrap="nowrap">
3434
&nbsp;&nbsp;&nbsp;&nbsp;
3535
<a href="#" onclick="uploader.resumable.upload(); return(false);" class="progress-resume-link"><span class="glyphicon glyphicon-play"></span></a>
36-
&nbsp;&nbsp;&nbsp;&nbsp;
36+
3737
<a href="#" onclick="uploader.resumable.pause(); return(false);" class="progress-pause-link"><span class="glyphicon glyphicon-pause"></span></a>
3838
</td>
3939
</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>
4049
</table>
4150
</div>
4251

0 commit comments

Comments
 (0)