Merge pull request #6066 from tsiegleauq/fullscreen-projector-cursor

Hide cursor in full screen projector
This commit is contained in:
Emanuel Schütze 2021-05-25 21:37:01 +02:00 committed by GitHub
commit a0c9f3b6da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}