的未定义方法‘特异性’

的未定义方法‘特异性’

本文介绍了“NoMethodError:[:not(.block-layered-nav)]:Array 的未定义方法‘特异性’"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是对这篇文章的补充:可以'不要在 Magento CE 1.9 中编译 rwd skin SCSS

This is in addition to this post: Can't compile rwd skin SCSS in Magento CE 1.9

Windows 8.1 / PowerShell
Compass 1.0.1 (Polaris)
Sass 3.4.6 (Selective Steve)
ruby 2.1.3p242 (2014-09-19 revision 47630) [x64-mingw32]

我从 a:not(".button") > a:not(.button) 中删除了 "

I removed the " from a:not(".button") > a:not(.button)

新错误:

"NoMethodError: undefined method `specificity' for [:not(.block-layered-nav)]:Array";

注释掉块然后我得到:

"NoMethodError: undefined method `specificity' for [:not(:last-child)]:Array"

推荐答案

这似乎是一个已知Sass 3.4.6 的问题.您需要降级到 3.4.5,直到此问题得到解决.

This appears to be a known issue with Sass 3.4.6. You'll need to downgrade to 3.4.5 until this is fixed.

这篇关于“NoMethodError:[:not(.block-layered-nav)]:Array 的未定义方法‘特异性’"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 14:09