Skip to content

Commit

Permalink
fix(FEC-7563): prevent user select of root div element (#150)
Browse files Browse the repository at this point in the history
add CSS rule to prevent root div element of player to be outlined.
caused by #147
  • Loading branch information
OrenMe authored and Dan Ziv committed Nov 29, 2017
1 parent 7201d02 commit 29aba48
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/styles/_shell.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
width: 100%;
height: 100%;
position: relative;
outline: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;

&:-webkit-full-screen {
width: 100%;
Expand Down

0 comments on commit 29aba48

Please sign in to comment.