fix(button): vanilla color is usable

This commit is contained in:
Manu Mtz.-Almeida
2018-09-14 22:57:12 +02:00
parent b9e42ebd11
commit b8b9b83d49
3 changed files with 28 additions and 6 deletions

View File

@ -45,11 +45,11 @@
// --------------------------------------------------
::slotted(*) .button-outline {
--color: #{$toolbar-md-text-color};
--color-activated: #{$toolbar-md-text-color};
--color: currentColor;
--color-activated: currentColor;
--background: transparent;
--background-activated: transparent;
--border-color: #{$toolbar-md-text-color};
--border-color: currentColor;
}
@ -57,8 +57,8 @@
// --------------------------------------------------
::slotted(*) .button-clear {
--color: #{$toolbar-md-text-color};
--color-activated: #{$toolbar-md-text-color};
--color: currentColor;
--color-activated: currentColor;
--background: transparent;
}