Skip to content
Snippets Groups Projects
Commit 0b962b83 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Change color of comment freeze button

parent 3cb12634
Branches
No related merge requests found
...@@ -35,13 +35,13 @@ ...@@ -35,13 +35,13 @@
<mat-icon class="searchBarIcon">filter_list</mat-icon> <mat-icon class="searchBarIcon">filter_list</mat-icon>
</button> </button>
<button id="pause-comments" mat-fab aria-labelledby="pause" class="actionButton" <button id="pause-comments" mat-fab aria-labelledby="pause" class="freezeButton"
*ngIf="!searchBox.value && !search && !freeze" (click)="pauseCommentStream()" *ngIf="!searchBox.value && !search && !freeze" (click)="pauseCommentStream()"
matTooltip="{{ 'comment-list.pause-comments' | translate }}"> matTooltip="{{ 'comment-list.pause-comments' | translate }}">
<mat-icon class="freezeIcon">pause</mat-icon> <mat-icon class="freezeIcon">pause</mat-icon>
</button> </button>
<button id="play-comments" mat-fab aria-labelledby="play" class="actionButton" <button id="play-comments" mat-fab aria-labelledby="play" class="freezeButton"
*ngIf="!searchBox.value && !search && freeze" (click)="playCommentStream()" *ngIf="!searchBox.value && !search && freeze" (click)="playCommentStream()"
matTooltip="{{ 'comment-list.play-comments' | translate }}"> matTooltip="{{ 'comment-list.play-comments' | translate }}">
<mat-icon class="freezeIcon">play_arrow</mat-icon> <mat-icon class="freezeIcon">play_arrow</mat-icon>
......
...@@ -71,6 +71,13 @@ app-comment { ...@@ -71,6 +71,13 @@ app-comment {
background-color: var(--primary); background-color: var(--primary);
} }
.freezeButton {
width: 40px;
height: 40px;
margin: 0 2% 0 5%;
background-color: var(--secondary);
}
.actionIcon { .actionIcon {
transform: scale(1.5); transform: scale(1.5);
color: var(--surface) color: var(--surface)
......
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