From 5fdcd4602bcb4b87bd977b6e4463b3a3443f32e3 Mon Sep 17 00:00:00 2001 From: Gary Katsevman Date: Wed, 28 Sep 2016 18:15:50 -0400 Subject: [PATCH] fix(css): remove commented out css Fixes #3587. Some commented out css was removed as it is no longer necessary and potentially causes issues. --- src/css/ie8.css | 31 ++++++------------------------- 1 file changed, 6 insertions(+), 25 deletions(-) diff --git a/src/css/ie8.css b/src/css/ie8.css index 690f2d74e2..6ce8c23fdc 100644 --- a/src/css/ie8.css +++ b/src/css/ie8.css @@ -1,30 +1,11 @@ -/** -// IE 8 hack for media queries which the sass parser can encounter problems with -$ie8screen: "\\0screen"; - -// original home: css/components/_control-bar.scss -// IE8 is flakey with fonts, and you have to change the actual content to force -// fonts to show/hide properly. -// - "\9" IE8 hack didn't work for this -// Found in XP IE8 from http://modern.ie. Does not show up in "IE8 mode" in IE9 -.vjs-user-inactive.vjs-playing .vjs-control-bar :before { - @media #{$ie8screen} { content: ""; } -} - -// Video has started playing AND user is inactive -.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar { - - // Make controls hidden in IE8 for now - @media #{$ie8screen} { - visibility: hidden; - } -} -*/ - @media \0screen { .vjs-user-inactive.vjs-playing .vjs-control-bar :before { - content: ""; } } + content: ""; + } +} @media \0screen { .vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar { - visibility: hidden; } } + visibility: hidden; + } +}