web-apps/apps/common/mobile/resources/less/_mixins.less

11 lines
335 B
Plaintext
Raw Normal View History

2016-11-15 12:32:11 +00:00
// Encoded SVG Background
.encoded-svg-mask(@svg) {
@url: `encodeURIComponent(@{svg})`;
background-color: @themeColor;
-webkit-mask-image: url("data:image/svg+xml;charset=utf-8,@{url}");
2020-11-19 17:28:28 +00:00
}
.encoded-svg-background(@svg) {
@url: `encodeURIComponent(@{svg})`;
background-image: url("data:image/svg+xml;charset=utf-8,@{url}");
2016-11-15 12:32:11 +00:00
}