scss mixin: remove-button-styles -> button-reset

pull/1/head
Scott Nonnenberg 7 years ago
parent 26be658892
commit 375dc62c4a

@ -751,7 +751,7 @@ span.status {
cursor: pointer; cursor: pointer;
button { button {
@include remove-button-styles; @include button-reset;
} }
.first-line { .first-line {
@ -869,7 +869,7 @@ span.status {
margin-right: auto; margin-right: auto;
button { button {
@include remove-button-styles; @include button-reset;
} }
.image-container { .image-container {

@ -1,4 +1,4 @@
@mixin remove-button-styles() { @mixin button-reset {
background: none; background: none;
color: inherit; color: inherit;
border: none; border: none;
@ -13,6 +13,7 @@
-webkit-mask-size: 100%; -webkit-mask-size: 100%;
background-color: $color; background-color: $color;
} }
@mixin header-icon-white($svg) { @mixin header-icon-white($svg) {
@include color-svg($svg, rgba(255, 255, 255, 0.8)); @include color-svg($svg, rgba(255, 255, 255, 0.8));
&:focus, &:focus,
@ -27,6 +28,7 @@
@include color-svg($svg, black); @include color-svg($svg, black);
} }
} }
@mixin avatar-colors { @mixin avatar-colors {
&.red { &.red {
background-color: $material_red; background-color: $material_red;

Loading…
Cancel
Save