Set h4 font-size. Added tooltips for projector controls.
This commit is contained in:
parent
41627da5de
commit
ef7bb01043
@ -15,16 +15,19 @@
|
|||||||
</a>
|
</a>
|
||||||
<!-- Controls under the projector preview -->
|
<!-- Controls under the projector preview -->
|
||||||
<div *osPerms="'core.can_manage_projector'" class="control-group projector-controls">
|
<div *osPerms="'core.can_manage_projector'" class="control-group projector-controls">
|
||||||
<!-- scale up -->
|
|
||||||
<button type="button" mat-icon-button (click)="scale(scrollScaleDirection.Up)">
|
|
||||||
<mat-icon>zoom_in</mat-icon>
|
|
||||||
</button>
|
|
||||||
<!-- scale down -->
|
<!-- scale down -->
|
||||||
<button type="button" mat-icon-button (click)="scale(scrollScaleDirection.Down)">
|
<button type="button" mat-icon-button (click)="scale(scrollScaleDirection.Down)"
|
||||||
|
matTooltip="{{ 'Zoom out' | translate }}">
|
||||||
<mat-icon>zoom_out</mat-icon>
|
<mat-icon>zoom_out</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
|
<!-- scale up -->
|
||||||
|
<button type="button" mat-icon-button (click)="scale(scrollScaleDirection.Up)"
|
||||||
|
matTooltip="{{ 'Zoom in' | translate }}">
|
||||||
|
<mat-icon>zoom_in</mat-icon>
|
||||||
|
</button>
|
||||||
<!-- reset button -->
|
<!-- reset button -->
|
||||||
<button type="button" mat-icon-button (click)="scale(scrollScaleDirection.Reset)">
|
<button type="button" mat-icon-button (click)="scale(scrollScaleDirection.Reset)"
|
||||||
|
matTooltip="{{ 'Reset' | translate }}">
|
||||||
<mat-icon>refresh</mat-icon>
|
<mat-icon>refresh</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<!-- scaling indicator -->
|
<!-- scaling indicator -->
|
||||||
@ -70,7 +73,8 @@
|
|||||||
<mat-icon>arrow_downward</mat-icon>
|
<mat-icon>arrow_downward</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<!-- reset button -->
|
<!-- reset button -->
|
||||||
<button type="button" mat-icon-button (click)="scroll(scrollScaleDirection.Reset)">
|
<button type="button" mat-icon-button (click)="scroll(scrollScaleDirection.Reset)"
|
||||||
|
matTooltip="{{ 'Reset' | translate }}">
|
||||||
<mat-icon>refresh</mat-icon>
|
<mat-icon>refresh</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<!-- scroll indicator -->
|
<!-- scroll indicator -->
|
||||||
|
@ -247,7 +247,7 @@ h3 {
|
|||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 12px;
|
font-size: 100%;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
|
||||||
.mat-icon-button mat-icon {
|
.mat-icon-button mat-icon {
|
||||||
|
Loading…
Reference in New Issue
Block a user