Commit 4bb9dcf1 by jmclaus

Merge pull request #1220 from edx/jmclaus/bugfix_bypass_captions

Captions are now removed from tab order when hidden
parents f095f3c8 4f59e6bb
......@@ -551,6 +551,7 @@ div.video {
margin: 0;
font-size: 14px;
list-style: none;
visibility: visible;
li {
border: 0;
......@@ -610,6 +611,7 @@ div.video {
ol.subtitles {
width: 0;
height: 0;
visibility: hidden;
}
ol.subtitles.html5 {
......@@ -643,6 +645,7 @@ div.video {
ol.subtitles {
right: -(flex-grid(4));
width: auto;
visibility: hidden;
}
}
......@@ -703,6 +706,7 @@ div.video {
position: fixed;
right: 0;
top: 0;
visibility: visible;
@include transition(none);
li {
......
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