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

Merge branch '289-add-space-between-session-creation-and-roomlist' into 'master'

Resolve "Add Space between session creation and roomlist"

Closes #289

See merge request arsnova/frag.jetzt!263
parents df69f814 72cbb63e
No related merge requests found
......@@ -7,11 +7,13 @@
<div *ngIf="roomsWithRole">
<mat-divider></mat-divider>
<div *ngIf="tableDataSource.data.length === 0" aria-labelledby="emptySessionHistoryLabel">
<h3>{{ 'room-list.no-room-history' | translate }}</h3>
<h3 class="noRoomHistory">{{ 'room-list.no-room-history' | translate }}</h3>
</div>
<div *ngIf="tableDataSource.data.length > 0">
<div class="fill-space" *ngIf="this.rooms && this.rooms.length <= 5"></div>
<!-- filter input -->
<mat-form-field *ngIf="this.rooms && this.rooms.length > 5" class="filterWrapper">
<input (focus)="eventService.makeFocusOnInputTrue()" (blur)="eventService.makeFocusOnInputFalse()" matInput
......
......@@ -51,7 +51,7 @@ th {
}
.noRoomHistory {
color: var(--on-surface)!important;
color: var(--on-surface);
}
.visually-hidden {
......@@ -71,3 +71,7 @@ th {
height: 45vh;
overflow: auto;
}
.fill-space {
height: 20px;
}
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