From 9541fc1033490c13a52fabc4eebd50474d0b855d Mon Sep 17 00:00:00 2001 From: Sylvia van Os Date: Sun, 25 Jun 2017 22:13:00 +0200 Subject: [PATCH 1/2] Mirror local video feed --- .../vector/css/matrix-react-sdk/views/voip/_VideoView.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss b/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss index 8f23ef6ba9..eb4353835b 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss @@ -42,4 +42,5 @@ limitations under the License. .mx_VideoView_localVideoFeed video { width: auto; height: 100%; -} \ No newline at end of file + transform: scale(-1, 1); +} From 044519f9ea2a021a2fc4dbb5b97879f575d6bc4c Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Wed, 25 Oct 2017 18:18:37 +0100 Subject: [PATCH 2/2] Add more specific css class to allow for optional flipping --- .../vector/css/matrix-react-sdk/views/voip/_VideoView.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss b/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss index eb4353835b..feb60f4763 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss @@ -42,5 +42,8 @@ limitations under the License. .mx_VideoView_localVideoFeed video { width: auto; height: 100%; +} + +.mx_VideoView_localVideoFeed.mx_VideoView_localVideoFeed_flipped video { transform: scale(-1, 1); }