commit: 09b4b65fde7db8b27bfa349cdfd5de91fcd69ecc
parent: 48cb2dccd204c3b84beb82bc42b98daadabfbe1a
Author: Eugen <eugen@zeonfederated.com>
Date: Sun, 2 Apr 2017 22:22:56 +0200
Merge pull request #740 from 0x70b1a5/master
remove black border on video mute/spoiler buttons
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/assets/javascripts/components/components/video_player.jsx b/app/assets/javascripts/components/components/video_player.jsx
@@ -24,7 +24,7 @@ const muteStyle = {
top: '10px',
right: '10px',
color: 'white',
- boxShadow: '1px 1px 1px #000',
+ textShadow: "0px 1px 1px black, 1px 0px 1px black",
opacity: '0.8',
zIndex: '5'
};
@@ -57,7 +57,7 @@ const spoilerButtonStyle = {
top: '6px',
left: '8px',
color: 'white',
- boxShadow: '1px 1px 1px #000',
+ textShadow: "0px 1px 1px black, 1px 0px 1px black",
zIndex: '100'
};