fix(menu-button): color

fixes #15546
fixes #15545
This commit is contained in:
Manu Mtz.-Almeida
2018-10-08 16:12:15 -05:00
parent e189cc6ec2
commit 386cf82340
5 changed files with 5 additions and 23 deletions

View File

@ -1,11 +1,10 @@
@import "./menu-button";
@import "./menu-button.ios.vars";
// iOS Menu Button
// --------------------------------------------------
:host {
--color: #{$menu-button-ios-color};
--color: #{ion-color(primary, base)};
}
:host(.activated) {

View File

@ -1,10 +0,0 @@
@import "../../themes/ionic.globals.ios";
// iOS Menu Button
// --------------------------------------------------
/// @prop - Z index of the Menu button
$menu-button-ios-button-z-index: $z-index-toolbar-buttons !default;
/// @prop - Text color of the Menu button
$menu-button-ios-color: ion-color(primary, base) !default;

View File

@ -1,10 +1,10 @@
@import "./menu-button";
@import "./menu-button.md.vars";
// MD Menu Button
// --------------------------------------------------
:host {
--color: #{$menu-button-md-color};
--color: currentColor;
}
button {

View File

@ -1,7 +0,0 @@
@import "../../themes/ionic.globals.md";
// Material Design Menu Button
// --------------------------------------------------
/// @prop - Text color of the Menu button
$menu-button-md-color: $toolbar-md-text-color !default;