Fix autoprefixer issues with old gradient syntax

This commit is contained in:
Ján Mikláš
2019-03-20 15:41:44 +01:00
committed by M. Shull
parent c708163d22
commit f7c34c8b5c

View File

@@ -24,13 +24,13 @@
border-radius: 3px;
box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
background-color: #34c2e3;
background-image: linear-gradient(top, #34c2e3, darken(#34c2e3, 20%));
background-image: linear-gradient(to bottom, #34c2e3, darken(#34c2e3, 20%));
}
.mailpoet_progress_complete {
.mailpoet_progress_bar {
background-color: hsla(191, 78%, 80%, 1);
background-image: linear-gradient(top, hsla(191, 78%, 80%, 1), hsla(191, 76%, 67%, 1));
background-image: linear-gradient(to bottom, hsla(191, 78%, 80%, 1), hsla(191, 76%, 67%, 1));
}
}