Skip to content

Commit 131dd6a

Browse files
authored
Merge pull request #2053 from antgonza/fix-by-blinking
Fix by blinking
2 parents c174693 + 62a1b93 commit 131dd6a

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-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/study_ajax/processing_artifact.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,9 @@ <h4>
405405
<i>Processing workflow</i>
406406
<button class="btn btn-primary btn-sm" onclick="run_workflow();" id='run-btn' disabled><span class="glyphicon glyphicon-play"></span> Run</button>
407407
</h4>
408+
<div class="blinking-message">
409+
<small>Don't forget to hit "Run" once you are done with your workflow!</small>
410+
</div>
408411
<h5>
409412
Wondering what to select? Check our data <a target='_blank' onclick="return !window.open(this.href, 'Qiita processing recommendations', 'width=800,height=500')" href='{% raw qiita_config.portal_dir %}/static/doc/html/processing-recommendations.html'>processing recommendations</a>.
410413
</h5>

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)