Skip to content

Instantly share code, notes, and snippets.

@paceaux
Created June 16, 2014 19:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paceaux/80c03d2db87f9cf21f64 to your computer and use it in GitHub Desktop.
Save paceaux/80c03d2db87f9cf21f64 to your computer and use it in GitHub Desktop.
Media Manager Layout Tweak
/*this assumes the parent container of the video is one with the id of video__player*/
/* Media Manager tweak*/
#video__player [id*="sdlmm_"] {
width: 100% !important;
height: 310px !important;
}
#video__player .pptooltip,
#video__player .ppbackslide,
#video__player .projekktor[style*="fixed"] .pptooltip[class],
#video__player .projekktor[style*="fixed"] .ppbackslide[class]{
height: auto !important;
width: auto !important;
}
/* Media Manager fullscreen tweak
corrects the original tweak for fullscreen;
if MM ever decides to add a class to the parent container when in fullscreen, change this */
#video__player [id*="sdlmm_"].projekktor[style*="fixed"] {
height: 100% !important;
width: 100% !important;
}
#video__player .projekktor[style*="fixed"] [id*="sdlmm_"] {
height: 100% !important;
width: 100% !important;
left:0% !important;
}
#video__player #pd_sdlmm_video__player_qsList{
height: auto !important;
width: auto !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment