Created
June 16, 2014 19:13
-
-
Save paceaux/80c03d2db87f9cf21f64 to your computer and use it in GitHub Desktop.
Media Manager Layout Tweak
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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