我试图有条件地导入sass partial如果存在则覆盖一组默认样式变量。鉴于@import指令不能嵌套,我正在寻找实现以下目标的方法:
@if 'partials/theme'{
@import 'partials/theme';
}
导入指令不能在控制指令或mixin中使用,那么引用可能存在或不存在的部分的正确方法是什么?
答案 0 :(得分:5)
您无法在控制指令中明确使用import指令。
“在mixins或控制指令中嵌套@import是不可能的。” - Sass Reference
error sass/screen.scss (Line 9: Import directives may not be used within control directives or mixins.)
如果你真的需要这个,有很多方法可以使用@content
指令解决它。但这实际上取决于你的任务真正归结为什么。
为每个主题生成多个.css文件输出的一个示例,您可能会这样做:
<强> _config.scss 强>
$theme-a: false !default;
// add content only to the IE stylesheet
@mixin theme-a {
@if ($theme-a == true) {
@content;
}
}
<强> _module.scss 强>
.widget {
@include theme-a {
background: red;
}
}
<强> all.theme-a.scss 强>
@charset "UTF-8";
$theme-a: true;
@import "all";
在另一种情况下,要在单个.css输出中生成多个主题选项,您可能必须依赖于这样的复杂循环:
//
// Category theme settings
// ------------------------------------------
// store config in an associated array so we can loop through
// and correctly assign values
//
// Use this like this:
// Note - The repeated loop cannot be abstracted to a mixin becuase
// sass wont yet allow us to pass arguments to the @content directive
// Place the loop inside a selector
//
// .el {
// @each $theme in $category-config {
// $class: nth($theme, 1);
// $color-prop: nth($theme, 2);
//
// .#{$class} & {
// border: 1px solid $color-prop;
// }
// }
// }
//
$category-config:
'page-news-opinion' $color-quaternary,
'page-advertising' #e54028,
'page-newspaper-media' $color-secondary,
'page-audience-insights' $color-tertiary,
;
$news-opinion-args: nth($category-config, 1);
$news-opinion-class: nth($news-opinion-args, 1);
$news-opinion-color: nth($news-opinion-args, 2);
$advertising-args: nth($category-config, 2);
$advertising-class: nth($advertising-args, 1);
$advertising-color: nth($advertising-args, 2);
$news-media-args: nth($category-config, 3);
$news-media-class: nth($news-media-args, 1);
$news-media-color: nth($news-media-args, 2);
$audience-args: nth($category-config, 4);
$audience-class: nth($audience-args, 1);
$audience-color: nth($audience-args, 2);
答案 1 :(得分:0)
回想起来,最好的解决方案是使用JavaScript来有条件地加载主题资产或模块。