Hide cursor in full screen projector

Hides the cursor when hovering over the full screen projectors
containers
This commit is contained in:
Sean 2021-05-20 12:20:23 +02:00 committed by Emanuel Schütze
parent f4c237a18e
commit 7a6b31d8f8
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<div id="container" #container [osResized]="resizeSubject">
<div id="projector" [ngStyle]="projectorStyle">
<div id="projector" class="nocursor" [ngStyle]="projectorStyle">
<os-projector *ngIf="projector" [projector]="projector"></os-projector>
</div>
</div>

View File

@ -819,3 +819,7 @@ button.mat-menu-item.selected {
.hide-height {
height: 0 !important;
}
.nocursor {
cursor: none;
}