我尝试使用断点替换Zen 7.5.4 Drupal 基本主题的子主题的_responsive.scss (参见第 155 行)中的媒体查询:
// @media all and (min-width: 960px)
@include breakpoint($desktop)
{
$zen-column-count: 5;
…
在此之前,我安装了 config.rb 中所需的断点,在 _init.scss 中包含并定义了我的断点。
// Breakpoints
$breakpoint-no-query-fallbacks: true;
$small: 480px, 'no-query' '.lt-ie9';
$desktop: 960px, 'no-query' '.lt-ie9';
一个更简单的任务可以完美地工作(因此系统可以正常工作)但是提到的代码会产生以下错误:
error styles.scss (Line 118 of _breakpoint.scss: Base-level rules cannot contain the parent-selector-referencing character '&'.)
我试图在zen-grids的代码中找到'&',但没有找到。我错了什么?