Skip to content
Snippets Groups Projects
Commit 56c9eebb authored by Klaus-Dieter Quibeldey-Cirkel's avatar Klaus-Dieter Quibeldey-Cirkel
Browse files

room numbers also on mobiles

parent cf8b4c60
Branches
Tags
No related merge requests found
......@@ -52,15 +52,15 @@
<span *ngIf="user.isGuest" svgIcon="meeting_room">{{'header.visited-sessions' | translate}}</span>
</button>
<button mat-menu-item *ngIf="user" (click)="openUserBonusTokenDialog()" tabindex="0">
<mat-icon color="warn">grade</mat-icon>
<mat-icon>grade</mat-icon>
<span>{{'header.user-bonus-token' | translate}}</span>
</button>
<button mat-menu-item *ngIf="user && !user.isGuest" (click)="openDeleteUserDialog()" tabindex="0">
<mat-icon color="warn">delete</mat-icon>
<mat-icon class="color-warn">delete</mat-icon>
<span>{{'header.delete-account' | translate}}</span>
</button>
<button mat-menu-item (click)="logout()" tabindex="0">
<mat-icon color="warn">exit_to_app</mat-icon>
<mat-icon class="color-warn">exit_to_app</mat-icon>
<span>{{ 'header.logout' | translate }}</span>
</button>
</mat-menu>
......
......@@ -63,3 +63,7 @@ svg {
.question-focus-btn-txt{
padding-left:6px;
}
.color-warn {
color: red;
}
......@@ -32,7 +32,7 @@
</th>
<td mat-cell class="clickable" *matCellDef="let room" (click)="setCurrentRoom(room.shortId)"
routerLink="/{{ roleToString((room.role)) }}/room/{{ room.shortId }}">
<span matBadge="{{room.commentCount > 0 ? room.commentCount : null}}" matBadgeOverlap="false">
<span matBadge="{{room.commentCount > 0 ? room.commentCount : null}}" matBadgePosition="before" matBadgeSize="small" matBadgeOverlap="false">
&raquo;{{room.name}}&laquo;
</span>
</td>
......
......@@ -106,7 +106,7 @@
"mark-read": "Discussed by you in full screen mode on the projector",
"mark-wrong": "Mark as wrong",
"new-comment": "A new question with the content, {{ comment }}, has been asked.",
"no-comments": "No questions present",
"no-comments": "No questions at present",
"reject": "Remove inappropriate question from the list",
"search-box-input-description": "Here you can search for questions.",
"semicolon": "CSV format (.csv)",
......
......@@ -96,7 +96,7 @@
"mark-not-wrong": "Marked as wrong by the professor",
"mark-read": "Already discussed by the professor",
"new-comment": "A new question with the content, {{ comment }}, has been asked.",
"no-comments": "No questions present",
"no-comments": "No questions at present",
"search-box-input-description": "Here you can search for questions.",
"send": "Send",
"send-description": "Send question",
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment