diff --git a/src/components/button/button.ios.scss b/src/components/button/button.ios.scss index 1de591ab83..331f1d4d88 100644 --- a/src/components/button/button.ios.scss +++ b/src/components/button/button.ios.scss @@ -318,5 +318,5 @@ $button-ios-round-border-radius: $button-round-border-radius // -------------------------------------------------- .button-strong-ios { - font-weight: bold; + font-weight: 600; } diff --git a/src/components/picker/picker-component.ts b/src/components/picker/picker-component.ts index c7c897c1fe..0710297001 100644 --- a/src/components/picker/picker-component.ts +++ b/src/components/picker/picker-component.ts @@ -438,7 +438,7 @@ export class PickerColumnCmp {
-
@@ -500,6 +500,9 @@ export class PickerCmp { } return button; }); + if (data.buttons.length > 0) { + data.buttons[data.buttons.length - 1].strong = true; + } // clean up dat data data.columns = data.columns.map(column => { diff --git a/src/components/toolbar/toolbar.ios.scss b/src/components/toolbar/toolbar.ios.scss index 9c0177ce90..765cdecc04 100644 --- a/src/components/toolbar/toolbar.ios.scss +++ b/src/components/toolbar/toolbar.ios.scss @@ -378,5 +378,5 @@ $navbar-ios-height: $toolbar-ios-height !default; // -------------------------------------------------- .bar-button-strong-ios { - font-weight: bold; + font-weight: 600; }