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

Fix styles for tag selection

parent 992c1933
No related merge requests found
......@@ -8,7 +8,7 @@
</mat-form-field>
<mat-form-field *ngIf="tags !== null">
<mat-label>{{ 'comment-page.tag' || translate }}</mat-label>
<mat-label>{{ 'comment-page.tag' | translate }}</mat-label>
<mat-select [(ngModel)]="selectedTag" class="comment-tag">
<mat-option *ngFor="let tag of tags" value="{{tag}}">{{tag}}</mat-option>
</mat-select>
......
......@@ -50,3 +50,14 @@ mat-hint {
background-color: var(--on-surface)!important;
}
::ng-deep .mat-select-arrow-wrapper .mat-select-arrow {
color: var(--on-surface);
}
::ng-deep .mat-select-value-text {
color: var(--on-surface);
}
::ng-deep .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
color: var(--primary);
}
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