Commit 214a814b by Giulio Gratta Committed by Sarina Canelake

Adjustment to show sequence tool tips in LMS

parent 6923687c
...@@ -211,6 +211,8 @@ nav.sequence-nav { ...@@ -211,6 +211,8 @@ nav.sequence-nav {
@include transition(all .1s $ease-in-out-quart 0s); @include transition(all .1s $ease-in-out-quart 0s);
white-space: pre; white-space: pre;
z-index: 99; z-index: 99;
visibility: hidden;
pointer-events: none;
&:empty { &:empty {
background: none; background: none;
...@@ -238,6 +240,7 @@ nav.sequence-nav { ...@@ -238,6 +240,7 @@ nav.sequence-nav {
display: block; display: block;
margin-top: 4px; margin-top: 4px;
opacity: 1.0; opacity: 1.0;
visibility: visible;
} }
} }
} }
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
data-id="${item['id']}" data-id="${item['id']}"
data-element="${idx+1}" data-element="${idx+1}"
href="javascript:void(0);"> href="javascript:void(0);">
<p class="sr">${item['title']}, ${item['type']}</p> <p>${item['title']}<span class="sr">, ${item['type']}</span></p>
</a> </a>
</li> </li>
% endfor % endfor
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment