Browse Source

Fix screenshot mode for the gridview

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/8195/head
Joas Schilling 3 years ago
parent
commit
9dd6d0f184
No known key found for this signature in database GPG Key ID: 74434EFE0D2E2205
  1. BIN
      docs/screenshotplaceholders/placeholder-7.jpeg
  2. 20
      src/components/CallView/Grid/Grid.vue

BIN
docs/screenshotplaceholders/placeholder-7.jpeg

Before

Width: 1215  |  Height: 903  |  Size: 511 KiB

After

Width: 1209  |  Height: 894  |  Size: 93 KiB

20
src/components/CallView/Grid/Grid.vue

@ -581,6 +581,11 @@ export default {
return true
},
},
remoteVideoBlocker: {
isVideoEnabled() {
return true
},
},
screenVisible: false,
}
},
@ -823,20 +828,11 @@ export default {
border: 1px solid #00FF41;
color: #00FF41;
}
font-size: 30px;
text-align: center;
vertical-align: middle;
position: relative;
&--self {
background-size: cover !important;
& > div {
width: 100%;
bottom: calc(-100% + 50px);
position: relative;
left: calc(50% - 88px);
}
border-radius: calc(var(--default-clickable-area) / 2);
}
img {
@ -845,6 +841,10 @@ export default {
width: 100%;
border-radius: calc(var(--default-clickable-area)/2);
}
.wrapper {
position: absolute;
}
}
.dev-mode__title {

Loading…
Cancel
Save