File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -318,5 +318,5 @@ $button-ios-round-border-radius: $button-round-border-radius
318
318
// --------------------------------------------------
319
319
320
320
.button-strong-ios {
321
- font-weight : bold ;
321
+ font-weight : 600 ;
322
322
}
Original file line number Diff line number Diff line change @@ -438,7 +438,7 @@ export class PickerColumnCmp {
438
438
<div class="picker-wrapper">
439
439
<div class="picker-toolbar">
440
440
<div *ngFor="let b of d.buttons" class="picker-toolbar-button" [ngClass]="b.cssRole">
441
- <button ion-button (click)="btnClick(b)" [ngClass]="b.cssClass" class="picker-button" clear>
441
+ <button ion-button (click)="btnClick(b)" [ngClass]="b.cssClass" class="picker-button" clear [strong]="b.strong" >
442
442
{{b.text}}
443
443
</button>
444
444
</div>
@@ -500,6 +500,9 @@ export class PickerCmp {
500
500
}
501
501
return button ;
502
502
} ) ;
503
+ if ( data . buttons . length > 0 ) {
504
+ data . buttons [ data . buttons . length - 1 ] . strong = true ;
505
+ }
503
506
504
507
// clean up dat data
505
508
data . columns = data . columns . map ( column => {
Original file line number Diff line number Diff line change @@ -378,5 +378,5 @@ $navbar-ios-height: $toolbar-ios-height !default;
378
378
// --------------------------------------------------
379
379
380
380
.bar-button-strong-ios {
381
- font-weight : bold ;
381
+ font-weight : 600 ;
382
382
}
You can’t perform that action at this time.
0 commit comments