Handle raised buttons appropriately

master
Alexander Surma 2015-06-25 15:04:16 +01:00
parent b84e39975d
commit 37077e5f69
1 changed files with 8 additions and 0 deletions

View File

@ -260,6 +260,10 @@
& .mdl-ripple { & .mdl-ripple {
background: $button-secondary-color-alt; background: $button-secondary-color-alt;
} }
&.mdl-button--raised {
color: $button-secondary-color-alt;
background-color: $button-primary-color-alt;
}
} }
.mdl-button--accent.mdl-button--accent { .mdl-button--accent.mdl-button--accent {
@ -267,4 +271,8 @@
& .mdl-ripple { & .mdl-ripple {
background: $button-fab-text-color-alt; background: $button-fab-text-color-alt;
} }
&.mdl-button--raised {
color: $button-fab-text-color-alt;
background-color: $button-fab-color-alt;
}
} }