Commit 583ff281 by Kyle Fiedler

Reverted speed dropdown

parent 90cd57f6
...@@ -199,22 +199,22 @@ section.course-content { ...@@ -199,22 +199,22 @@ section.course-content {
border-right: 1px solid #000; border-right: 1px solid #000;
@include box-shadow(1px 0 0 #555, inset 1px 0 0 #555); @include box-shadow(1px 0 0 #555, inset 1px 0 0 #555);
float: left; float: left;
line-height: 46px; //height of play pause buttons line-height: 0;
padding-right: lh(.25);
margin-right: 0; margin-right: 0;
position: relative;
@include transition(); @include transition();
width: 110px;
cursor: pointer; cursor: pointer;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
h3 { h3 {
@include inline-block(); float: left;
padding: 0 lh(.25) 0 lh(.5); padding: 0 lh(.25) 0 lh(.5);
font-weight: normal; font-weight: normal;
text-transform: uppercase; text-transform: uppercase;
font-size: 12px; font-size: 12px;
letter-spacing: 1px; letter-spacing: 1px;
color: #999; color: #999;
line-height: 46px; //height of play pause buttons
} }
p.active { p.active {
...@@ -222,27 +222,19 @@ section.course-content { ...@@ -222,27 +222,19 @@ section.course-content {
padding: 0 lh(.5) 0 0; padding: 0 lh(.5) 0 0;
margin-bottom: 0; margin-bottom: 0;
font-weight: bold; font-weight: bold;
display: none;
} }
// fix for now // fix for now
ol#video_speeds { ol#video_speeds {
background-color: #444;
border: 1px solid #000;
border-top: 0;
@include box-shadow(inset 1px 0 0 #555);
@include inline-block(); @include inline-block();
left: -1px;
position: absolute;
top: 48px;
width: 100%;
z-index: 10;
li { li {
border-bottom: 1px solid #000; float: left;
@include box-shadow( 0 1px 0 #555);
color: #fff; color: #fff;
cursor: pointer; cursor: pointer;
padding: 0 lh(.5); padding: 0 lh(.25);
line-height: 46px; //height of play pause buttons
&.active { &.active {
font-weight: bold; font-weight: bold;
...@@ -255,15 +247,13 @@ section.course-content { ...@@ -255,15 +247,13 @@ section.course-content {
} }
&:hover { &:hover {
color: #aaa; background-color: #444;
background-color: #666;
} }
} }
} }
&:hover { &:hover {
opacity: 1; opacity: 1;
background-color: #444;
} }
} }
......
...@@ -69,12 +69,6 @@ ...@@ -69,12 +69,6 @@
$(this).toggleClass("off"); $(this).toggleClass("off");
return false; return false;
}); });
$("ol#video_speeds").hide();
$("div.speeds").click(function() {
$("ol#video_speeds").slideToggle(150);
});
}); });
</script> </script>
</%block> </%block>
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