diff --git a/core/src/components/menu-button/menu-button.ios.scss b/core/src/components/menu-button/menu-button.ios.scss index b47bb58647..639ff3edfc 100644 --- a/core/src/components/menu-button/menu-button.ios.scss +++ b/core/src/components/menu-button/menu-button.ios.scss @@ -5,7 +5,7 @@ // -------------------------------------------------- :host { - --ion-color-base: #{ion-color(primary, base)}; + color: #{ion-color(primary, base)}; } button { diff --git a/core/src/components/menu-button/menu-button.md.scss b/core/src/components/menu-button/menu-button.md.scss index 610a6c9513..b0c077d4cd 100644 --- a/core/src/components/menu-button/menu-button.md.scss +++ b/core/src/components/menu-button/menu-button.md.scss @@ -4,10 +4,6 @@ // MD Menu Button // -------------------------------------------------- -:host { - --ion-color-base: currentColor; -} - button { @include padding(0, 8px); } diff --git a/core/src/components/menu-button/menu-button.scss b/core/src/components/menu-button/menu-button.scss index 73def78f17..e51fd91afa 100644 --- a/core/src/components/menu-button/menu-button.scss +++ b/core/src/components/menu-button/menu-button.scss @@ -6,8 +6,6 @@ :host { pointer-events: all; - color: #{current-color(base)}; - text-align: center; text-decoration: none; text-overflow: ellipsis; diff --git a/core/src/components/select/select.tsx b/core/src/components/select/select.tsx index 5cddbc6980..f836487e16 100644 --- a/core/src/components/select/select.tsx +++ b/core/src/components/select/select.tsx @@ -257,11 +257,11 @@ export class Select { } @Method() - open(ev?: UIEvent): Promise{ + open(ev?: UIEvent): Promise { let selectInterface = this.interface; if ((selectInterface === 'action-sheet' || selectInterface === 'popover') && this.multiple) { - console.warn('Select interface cannot be "' + selectInterface + '" with a multi-value select. Using the "alert" interface instead.'); + console.warn(`Select interface cannot be "${selectInterface}" with a multi-value select. Using the "alert" interface instead.`); selectInterface = 'alert'; }