bold font for checked boxes (#3381)

This commit is contained in:
Denys Vuika 2018-05-23 19:21:05 +01:00 committed by Eugenio Romano
parent 3a699a38d4
commit 30f13cdecd
3 changed files with 12 additions and 10 deletions

View File

@ -1,9 +1,11 @@
<mat-checkbox
*ngFor="let option of options"
[checked]="option.checked"
(change)="changeHandler($event, option)">
{{ option.name | translate }}
</mat-checkbox>
<div class="checklist">
<mat-checkbox
*ngFor="let option of options"
[checked]="option.checked"
(change)="changeHandler($event, option)">
{{ option.name | translate }}
</mat-checkbox>
</div>
<div class="facet-buttons" *ngIf="options.fitsPage">
<button mat-button color="primary" (click)="reset()">

View File

@ -1,8 +1,4 @@
.adf-search-check-list {
display: flex;
flex-direction: column;
.mat-checkbox {
margin: 5px;
}
}

View File

@ -6,6 +6,10 @@
.mat-checkbox {
margin: 5px;
&.mat-checkbox-checked .mat-checkbox-label {
font-weight: bold;
}
}
}