Skip to content

Commit

Permalink
Adjustment to show sequence tool tips in LMS
Browse files Browse the repository at this point in the history
  • Loading branch information
caesar2164 authored and Sarina Canelake committed Jul 25, 2013
1 parent 6923687 commit 214a814
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions common/lib/xmodule/xmodule/css/sequence/display.scss
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,8 @@ nav.sequence-nav {
@include transition(all .1s $ease-in-out-quart 0s);
white-space: pre;
z-index: 99;
visibility: hidden;
pointer-events: none;

&:empty {
background: none;
Expand Down Expand Up @@ -238,6 +240,7 @@ nav.sequence-nav {
display: block;
margin-top: 4px;
opacity: 1.0;
visibility: visible;
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions lms/templates/seq_module.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ul class="sequence-nav-buttons">
<li class="prev"><a href="#">Previous</a></li>
</ul>

<div class="sequence-list-wrapper">
<ol id="sequence-list">
% for idx, item in enumerate(items):
Expand All @@ -16,7 +16,7 @@
data-id="${item['id']}"
data-element="${idx+1}"
href="javascript:void(0);">
<p class="sr">${item['title']}, ${item['type']}</p>
<p>${item['title']}<span class="sr">, ${item['type']}</span></p>
</a>
</li>
% endfor
Expand Down

0 comments on commit 214a814

Please sign in to comment.