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
|
<div class="checklist">
|
||||||
*ngFor="let option of options"
|
<mat-checkbox
|
||||||
[checked]="option.checked"
|
*ngFor="let option of options"
|
||||||
(change)="changeHandler($event, option)">
|
[checked]="option.checked"
|
||||||
{{ option.name | translate }}
|
(change)="changeHandler($event, option)">
|
||||||
</mat-checkbox>
|
{{ option.name | translate }}
|
||||||
|
</mat-checkbox>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="facet-buttons" *ngIf="options.fitsPage">
|
<div class="facet-buttons" *ngIf="options.fitsPage">
|
||||||
<button mat-button color="primary" (click)="reset()">
|
<button mat-button color="primary" (click)="reset()">
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
.adf-search-check-list {
|
.adf-search-check-list {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
.mat-checkbox {
|
|
||||||
margin: 5px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,10 @@
|
|||||||
|
|
||||||
.mat-checkbox {
|
.mat-checkbox {
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
|
|
||||||
|
&.mat-checkbox-checked .mat-checkbox-label {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user