Skip to content

Fix by blinking #2053

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions qiita_pet/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ tr.shown td.more-info-processing-jobs {
background: url('../img//details_close.png') no-repeat center center;
}

.blinking-message {
animation: blinker 2s linear infinite;
}

@keyframes blinker {
50% { opacity: 0.3; background: #CCC;}
100% { opacity: 1.0; background: #FFF;}
}

/* table in the study description that holds the investigation type elements */
.investigation-type-table td {
padding-top: 6px;
Expand Down
3 changes: 3 additions & 0 deletions qiita_pet/templates/study_ajax/processing_artifact.html
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,9 @@ <h4>
<i>Processing workflow</i>
<button class="btn btn-primary btn-sm" onclick="run_workflow();" id='run-btn' disabled><span class="glyphicon glyphicon-play"></span> Run</button>
</h4>
<div class="blinking-message">
<small>Don't forget to hit "Run" once you are done with your workflow!</small>
</div>
<h5>
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>.
</h5>
Expand Down
11 changes: 10 additions & 1 deletion qiita_pet/templates/upload.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,19 @@
<td class="progress-pause" nowrap="nowrap">
&nbsp;&nbsp;&nbsp;&nbsp;
<a href="#" onclick="uploader.resumable.upload(); return(false);" class="progress-resume-link"><span class="glyphicon glyphicon-play"></span></a>
&nbsp;&nbsp;&nbsp;&nbsp;

<a href="#" onclick="uploader.resumable.pause(); return(false);" class="progress-pause-link"><span class="glyphicon glyphicon-pause"></span></a>
</td>
</tr>
<tr>
<td colspan="3">
<div class="blinking-message">
Keep track of your upload or pause/resume it! <span class="glyphicon glyphicon-arrow-up"></span>
<br/>
<small>(you can even close your computer or change networks!)</small>
</div>
</td>
<tr>
</table>
</div>

Expand Down