Skip to content

fix #1816 #2063

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 1 commit into from
Feb 3, 2017
Merged
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
14 changes: 12 additions & 2 deletions qiita_pet/templates/study_ajax/artifact_file_selector.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@
// Perform the first check to all the lists, given that we may be
// prepopulating some of them
check_files_lists();
$('[data-toggle="tooltip"]').tooltip();
});
</script>
<style>
Expand Down Expand Up @@ -180,6 +181,11 @@
.highlightWrong {
background: #FFAEAE;
}
a.tooltip-list:link, a.tooltip-list:visited, a.tooltip-list:hover, a.tooltip-list:active {
text-decoration: none;
color: #000;
display: inline-block;
}
</style>
<div class="row">
<div class="col-md-12">
Expand All @@ -201,7 +207,9 @@
<p style="text-align: center;"><i>Available Files</i></p>
<ul id="remaining-list" class="connectedSortable">
{% for fp in remaining %}
<li id="{{fp}}" style="text-overflow:ellipsis;" title="{{fp}}">{{fp}}</li>
<li id="{{fp}}" style="text-overflow:ellipsis;" title="{{fp}}">
<a class="tooltip-list" href="#" data-toggle="tooltip" data-placement="top" title="{{fp}}">{{fp}}</a>
</li>
{% end %}
</ul>
</div>
Expand All @@ -211,7 +219,9 @@
<p style="text-align: center;"><i>{{ ft.replace('_', ' ') }}</i></p>
<ul id="{{ft}}-list" data-file-required="{{req}}" data-file-count="{{num_prefixes}}" data-correct="true" class="connectedSortable checkable">
{% for fp in files %}
<li id="{{fp}}">{{fp}}</li>
<li id="{{fp}}">
<a class="tooltip-list" href="#" data-toggle="tooltip" data-placement="top" title="{{fp}}">{{fp}}</a>
</li>
{% end %}
</ul>
</div>
Expand Down