Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<mat-toolbar class="global-headbar background-headbar">
@if (showCommitteeLink) {
<a aria-label="Committee" class="adjust-icon" mat-icon-button role="button" [routerLink]="committeeLink">
<mat-icon>layers</mat-icon>
<mat-icon [matTooltip]="'Go to committee' | translate">layers</mat-icon>
</a>
}
<div class="one-line display-name">
Expand All @@ -17,7 +17,7 @@
[attr.aria-label]="'Global search' | translate"
(click)="openSearch()"
>
<mat-icon>search</mat-icon>
<mat-icon [matTooltip]="'Global search' | translate">search</mat-icon>
</button>
}
<!-- Button to view the own account -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h1 class="mock-h2" translate>Motion blocks</h1>

<!-- Amount -->
<div *osScrollingTableCell="'amount'; row as block; config: { width: 60 }" class="cell-slot fill">
<span class="os-amount-chip" matTooltip="{{ 'Motions' | translate }}" matTooltipPosition="left">
<span class="os-amount-chip" matTooltip="{{ 'Motions' | translate }}">
{{ getMotionAmount(block) }}
</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,21 @@
<ng-container *osPerms="permission.projectorCanManage" class="meta-text-block-action-row">
<button
mat-icon-button
matTooltip="{{ 'Sets this projector as the reference for the current list of speakers' | translate }}"
matTooltip="{{
'Sets this projector as the reference for the autopilot and the the current list of speakers'
| translate
}}"
(click)="setProjectorAsReference()"
>
@if (projector.isReferenceProjector) {
<mat-icon class="grey-icon">star</mat-icon>
fwmotion
}
@if (!projector.isReferenceProjector) {
<mat-icon class="grey-icon">star_border</mat-icon>
}
</button>
<button mat-icon-button matTooltip="{{ 'Open projector' | translate }}">
<button mat-icon-button matTooltip="{{ 'Open projector in new tab' | translate }}">
<a target="_blank" [routerLink]="getFullScreenLink()">
<mat-icon class="grey-icon">slideshow</mat-icon>
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ <h1 class="mock-h2" translate>Tags</h1>
@if (isOrgaManager) {
<div *osScrollingTableCell="'edit'; row as orgaTag; config: { width: 40 }" class="cell-slot fill">
<button mat-icon-button (click)="editOrganizationTag(orgaTag)">
<mat-icon>edit</mat-icon>
<mat-icon [matTooltip]="'Edit' | translate">edit</mat-icon>
</button>
</div>
<div *osScrollingTableCell="'delete'; row as orgaTag; config: { width: 40 }" class="cell-slot fill">
<button color="warn" mat-icon-button (click)="deleteOrganizationTags(orgaTag)">
<mat-icon>delete</mat-icon>
<mat-icon [matTooltip]="'Delete' | translate">delete</mat-icon>
</button>
</div>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { MatButtonModule } from '@angular/material/button';
import { MatDividerModule } from '@angular/material/divider';
import { MatIconModule } from '@angular/material/icon';
import { MatMenuModule } from '@angular/material/menu';
import { MatTooltipModule } from '@angular/material/tooltip';
import { OpenSlidesTranslationModule } from '@app/site/modules/translations';
import { ChipComponent } from '@app/ui/modules/chip';
import { HeadBarModule } from '@app/ui/modules/head-bar/head-bar.module';
Expand All @@ -26,6 +27,7 @@ import { OrganizationTagListRoutingModule } from './organization-tag-list-routin
MatIconModule,
MatMenuModule,
MatButtonModule,
MatTooltipModule,
MatDividerModule
]
})
Expand Down
Loading