diff --git a/src/components/toolbar/toolbar.ios.scss b/src/components/toolbar/toolbar.ios.scss index b6698d5739..c23bf7cd8b 100644 --- a/src/components/toolbar/toolbar.ios.scss +++ b/src/components/toolbar/toolbar.ios.scss @@ -36,6 +36,9 @@ $toolbar-ios-button-color: color-contrast($colors-ios, $toolbar /// @prop - Border radius of the toolbar button $toolbar-ios-button-border-radius: 4px !default; +/// @prop - Font weight of the strong toolbar button +$toolbar-ios-button-strong-font-weight: 600 !default; + /// @prop - Height of the navigation bar $navbar-ios-height: $toolbar-ios-height !default; @@ -378,5 +381,5 @@ $navbar-ios-height: $toolbar-ios-height !default; // -------------------------------------------------- .bar-button-strong-ios { - font-weight: $button-ios-strong-font-weight; + font-weight: $toolbar-ios-button-strong-font-weight; } diff --git a/src/components/toolbar/toolbar.md.scss b/src/components/toolbar/toolbar.md.scss index 8cb295d52e..b4be73d565 100644 --- a/src/components/toolbar/toolbar.md.scss +++ b/src/components/toolbar/toolbar.md.scss @@ -30,6 +30,9 @@ $toolbar-md-button-color: $toolbar-md-title-text-color !default; /// @prop - Border radius of the toolbar button $toolbar-md-button-border-radius: 2px !default; +/// @prop - Font weight of the strong toolbar button +$toolbar-md-button-strong-font-weight: bold !default; + /// @prop - Height of the navigation bar $navbar-md-height: $toolbar-md-height !default; @@ -396,5 +399,5 @@ $navbar-md-height: $toolbar-md-height !default; // -------------------------------------------------- .bar-button-strong-md { - font-weight: $button-md-strong-font-weight; + font-weight: $toolbar-md-button-strong-font-weight; } diff --git a/src/components/toolbar/toolbar.wp.scss b/src/components/toolbar/toolbar.wp.scss index 5fa35c45cc..3dc8d9a4ad 100644 --- a/src/components/toolbar/toolbar.wp.scss +++ b/src/components/toolbar/toolbar.wp.scss @@ -39,6 +39,9 @@ $toolbar-wp-button-color: color-contrast($colors-wp, $toolbar-wp- /// @prop - Border radius of the toolbar button $toolbar-wp-button-border-radius: 2px !default; +/// @prop - Font weight of the strong toolbar button +$toolbar-wp-button-strong-font-weight: bold !default; + /// @prop - Height of the navigation bar $navbar-wp-height: $toolbar-wp-height !default; @@ -350,5 +353,5 @@ $navbar-wp-height: $toolbar-wp-height !default; // -------------------------------------------------- .bar-button-strong-wp { - font-weight: $button-wp-strong-font-weight; + font-weight: $toolbar-wp-button-strong-font-weight; }