From 471529b8053bce0d9708d439a24f5df15d7feded Mon Sep 17 00:00:00 2001 From: seescode Date: Mon, 4 Apr 2016 13:09:19 -0400 Subject: [PATCH] @seescode fixed css failing on IE8 due to incorrect ie8 hack. Fixes #3140. Closes #3226. --- CHANGELOG.md | 1 + src/css/components/_control-bar.scss | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5c33b3d67..e4abf21184 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ CHANGELOG ## HEAD (Unreleased) * @vtytar fixed auto-setup failing if taking too long to load ([view](http://github.com/videojs/video.js/pull/3233)) +* @seescode fixed css failing on IE8 due to incorrect ie8 hack ([view](http://github.com/videojs/video.js/pull/3226)) -------------------- diff --git a/src/css/components/_control-bar.scss b/src/css/components/_control-bar.scss index be09029cb8..8a3a54cb92 100644 --- a/src/css/components/_control-bar.scss +++ b/src/css/components/_control-bar.scss @@ -46,7 +46,7 @@ // 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 -$ie8screen: "\0screen"; +$ie8screen: "\\0screen"; .vjs-user-inactive.vjs-playing .vjs-control-bar :before { @media #{$ie8screen} { content: ""; } }