Studio: adds in new Sass file for Studio-specific xmodule presentation and removes full screen control from video alpha display UI. Adds jasmine test for subtitles scroll. Adds tests for caption change height functionality. Uses gettext wrapper. Fixes caption change height functionality. Removes IS_CMS, isCms flags.
16 lines
325 B
SCSS
16 lines
325 B
SCSS
// studio - elements - xmodules
|
|
// ====================
|
|
|
|
// Video Alpha
|
|
.xmodule_VideoAlphaModule {
|
|
|
|
// display mode
|
|
&.xmodule_display {
|
|
|
|
// full screen
|
|
.video-controls .add-fullscreen {
|
|
display: none !important; // nasty, but needed to override the bad specificity of the xmodule css selectors
|
|
}
|
|
}
|
|
}
|