Less.js:获取特定上下文的选择器

时间:2014-12-05 15:11:18

标签: css-selectors less element

我正在使用less.js(1.5.0,1.6.0,2.1.1测试过)并且似乎无法覆盖具有特定上下文的选择器。我很高兴能够了解我是否与我的关系不那么兼容

版本1:

.icon.icon-text {
    &.icon-save { background-image: url('patth/to/file.svg'); }
    #specific-grid &.icon-save { background-image: url('patth/to/file.svg') }
}

版本2:

.icon.icon-text {
    &.icon-save {
        background-image: url('patth/to/file.svg');

        #specific-grid & { background-image: url('patth/to/file.svg') }
    }
}

两个版本都不会生成上下文相关的选择器。我应该怎么做呢?

0 个答案:

没有答案