Merge pull request #9289 from KDSBrowne/issue-9287
Fix exception in presentation when minimized and poll published
This commit is contained in:
commit
a0e02932c6
@ -66,15 +66,7 @@ $after-content-order: 3;
|
||||
}
|
||||
|
||||
.hideOverlay {
|
||||
visibility: hidden !important;
|
||||
position: absolute !important;
|
||||
overflow: hidden !important;
|
||||
clip: rect(0 0 0 0) !important;
|
||||
width: 1px !important;
|
||||
height: 1px !important;
|
||||
margin: -1px !important;
|
||||
padding: 0 !important;
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
.floatingOverlay {
|
||||
|
@ -412,7 +412,7 @@ class PresentationArea extends PureComponent {
|
||||
};
|
||||
|
||||
const svgViewBox = `${viewBoxPosition.x} ${viewBoxPosition.y} `
|
||||
+ `${viewBoxDimensions.width} ${viewBoxDimensions.height}`;
|
||||
+ `${viewBoxDimensions.width} ${Number.isNaN(viewBoxDimensions.height) ? 0 : viewBoxDimensions.height}`;
|
||||
|
||||
return (
|
||||
<div
|
||||
|
@ -29,6 +29,7 @@
|
||||
left: auto;
|
||||
bottom: 0;
|
||||
pointer-events: none;
|
||||
z-index: 3;
|
||||
|
||||
[dir="rtl"] & {
|
||||
margin: 0 0 0 var(--toolbar-margin);
|
||||
@ -42,10 +43,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
.toolbarContainer:hover{
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.toolbarWrapper {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
|
Loading…
Reference in New Issue
Block a user