Merge pull request #1280 from edx/fix/frances/lms-video-dl-buttons2

Improving the video and transcript download buttons
This commit is contained in:
frances botsford
2013-10-10 07:10:38 -07:00
3 changed files with 46 additions and 8 deletions

View File

@@ -27,6 +27,33 @@ div.video {
height: 0px;
}
.wrapper-downloads {
margin: 0;
padding: 0;
.video-sources,
.video-tracks {
display: inline-block;
margin: ($baseline*.75) ($baseline/2) 0 0;
a {
@include transition(all 0.25s ease-in-out 0s);
@include font-size(14);
display: inline-block;
border-radius: 3px 3px 3px 3px;
background-color: $very-light-text;
padding: ($baseline*.75);
color: $lighter-base-font-color;
&:hover {
background-color: $action-primary-active-bg;
color: $very-light-text;
}
}
}
}
article.video-wrapper {
float: left;
margin-right: flex-gutter(9);