Commit cd03a3ad by Kyle Fiedler

More minor tweeks

parent 2b1c6022
...@@ -3189,10 +3189,9 @@ section.course-content div.video-subtitles div.video-wrapper section.video-contr ...@@ -3189,10 +3189,9 @@ section.course-content div.video-subtitles div.video-wrapper section.video-contr
section.course-content div.video-subtitles div.video-wrapper section.video-controls div.secondary-controls div.speeds a ol#video_speeds { section.course-content div.video-subtitles div.video-wrapper section.video-controls div.secondary-controls div.speeds a ol#video_speeds {
background-color: #444; background-color: #444;
border: 1px solid #000; border: 1px solid #000;
border-bottom: 0; -webkit-box-shadow: inset 1px 0 0 #555555, 0 3px 0 #444444;
-webkit-box-shadow: inset 1px 0 0 #555555, 0 2px 0 #444444, inset 0 -1px 0 black; -moz-box-shadow: inset 1px 0 0 #555555, 0 3px 0 #444444;
-moz-box-shadow: inset 1px 0 0 #555555, 0 2px 0 #444444, inset 0 -1px 0 black; box-shadow: inset 1px 0 0 #555555, 0 3px 0 #444444;
box-shadow: inset 1px 0 0 #555555, 0 2px 0 #444444, inset 0 -1px 0 black;
left: -1px; left: -1px;
display: none; display: none;
position: absolute; position: absolute;
......
...@@ -242,8 +242,7 @@ section.course-content { ...@@ -242,8 +242,7 @@ section.course-content {
ol#video_speeds { ol#video_speeds {
background-color: #444; background-color: #444;
border: 1px solid #000; border: 1px solid #000;
border-bottom: 0; @include box-shadow(inset 1px 0 0 #555, 0 3px 0 #444);
@include box-shadow(inset 1px 0 0 #555, 0 2px 0 #444, inset 0 -1px 0 #000);
left: -1px; left: -1px;
display: none; display: none;
position: absolute; position: absolute;
......
...@@ -131,7 +131,7 @@ $(document).ready(function() { ...@@ -131,7 +131,7 @@ $(document).ready(function() {
var dropUpHeight = $('ol#video_speeds').height(); var dropUpHeight = $('ol#video_speeds').height();
console.log(dropUpHeight); console.log(dropUpHeight);
$('ol#video_speeds').css('top', -(dropUpHeight)); $('ol#video_speeds').css('top', -(dropUpHeight + 2));
}); });
function toggleVideo(){ function toggleVideo(){
......
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