2018-03-25 18:03:08 +00:00
|
|
|
// License: LGPL-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
module.exports = (dir, to, from) =>
|
|
|
|
` background-image: -webkit-linear-gradient(${dir}, ${to}, ${from});
|
|
|
|
background-image: -moz-linear-gradient(${dir}, ${to}, ${from});
|
|
|
|
background-image: -ms-linear-gradient(${dir}, ${to}, ${from});
|
|
|
|
background-image: linear-gradient(${dir}, ${to}, ${from});
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=${to}, endColorstr=${from});`
|
|
|
|
|