Skip to content

Commit

Permalink
fix(css): remove commented out css
Browse files Browse the repository at this point in the history
Fixes #3587. Some commented out css was removed as it is no longer necessary and potentially causes issues.
  • Loading branch information
gkatsev authored Sep 28, 2016
1 parent 5f95e41 commit 5fdcd46
Showing 1 changed file with 6 additions and 25 deletions.
31 changes: 6 additions & 25 deletions src/css/ie8.css
Original file line number Diff line number Diff line change
@@ -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;
}
}

0 comments on commit 5fdcd46

Please sign in to comment.