mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
bold font for checked boxes (#3381)
This commit is contained in:
parent
3a699a38d4
commit
30f13cdecd
@ -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()">
|
||||
|
@ -1,8 +1,4 @@
|
||||
.adf-search-check-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
.mat-checkbox {
|
||||
margin: 5px;
|
||||
}
|
||||
}
|
||||
|
@ -6,6 +6,10 @@
|
||||
|
||||
.mat-checkbox {
|
||||
margin: 5px;
|
||||
|
||||
&.mat-checkbox-checked .mat-checkbox-label {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user