我的文件行少了这样:
.icon-enter {
width: 22px;
height: 18px;
background: url('data:image/svg+xml;...') no-repeat;
background-size: 100%;
}
但是在编译之后我得到了结果:
.icon-enter {
width: 22px;
height: 18px;
background: url('data:image/svg+xml;...') 0 0/100% no-repeat;
}
所以它在新Chrome中运行良好。但在Android 4.1 Stock Android浏览器上的图标并不是很明显。如果我在css中添加background-size: 100%
并将其从background
中移除,那么它将在Android 4.1中正常运行。
我使用Ember.js
和ember-cli
以及插件ember-cli-less
。我可以更改background-size
的编译规则吗?