我想保留一个中心的.scss文件,用于存储项目的所有SASS变量定义。

// _master.scss 

$accent: #6D87A7;           
$error: #811702;
$warning: #F9E055;
$valid: #038144;
// etc... 

该项目将有大量的CSS文件,由于其性质。在一个位置声明所有项目范围的样式变量是很重要的。

在SCSS中有办法做到这一点吗?


当前回答

这个问题很久以前就有人问过了,所以我想我应该更新一下答案。

现在应该避免使用@import。摘自以下文件:

萨斯会在未来几年内逐步淘汰它,而且 最终将其从语言中完全移除。更喜欢@use规则 代替。

完整的原因可以在这里找到

你现在应该使用@use,如下所示:

_variables.scss

$text-colour: #262626;

_otherFile.scss

@use 'variables'; // Path to _variables.scss Notice how we don't include the underscore or file extension

body {
  // namespace.$variable-name
  // namespace is just the last component of its URL without a file extension
  color: variables.$text-colour;
}

你也可以为命名空间创建一个别名:

_otherFile.scss

@use 'variables' as v;

body {
  // alias.$variable-name
  color: v.$text-colour;
}

编辑正如@und3rdg在撰写本文时(2020年11月)指出的那样,@use目前仅适用于Dart Sass,而不适用于LibSass(现已弃用)或Ruby Sass。最新的兼容性请参见https://sass-lang.com/documentation/at-rules/use

其他回答

你可以这样做:

我有一个名为utilities的文件夹,其中有一个名为_variables.scss的文件

在这个文件中,我像这样声明变量:

$black: #000;
$white: #fff;

那我就有风格了。我导入了所有其他SCSS文件,如下所示:

// Utilities
@import "utilities/variables";

// Base Rules
@import "base/normalize";
@import "base/global";

然后,在我导入的任何文件中,我都应该能够访问我已经声明的变量。

只需要确保在导入其他变量文件之前导入该变量文件。

在angular v10中,我做了类似的事情,首先创建一个master。SCSS文件,包括以下变量:

的主人。scss文件:


$theme: blue;

$button_color: red;

$label_color: gray;

然后我导入了母版。SCSS文件在我的风格。顶部为SCSS:

风格。scss文件:

@use './master' as m;

确保您导入了master。SCSS在顶部。

M是命名空间的别名;

根据下面的官方文档,使用@use代替@import:

https://sass-lang.com/documentation/at-rules/import

然后是你的风格。SCSS文件可以使用master中定义的任何变量。SCSS如下:

someClass {

   backgroud-color: m.$theme;

   color: m.$button_color;

}

希望它能有所帮助……

快乐编码:)

这个答案显示了我最终是如何使用它的,以及我遇到的额外陷阱。

我做了一个主SCSS文件。这个文件的开头必须有下划线才能被导入:

// assets/_master.scss 
$accent: #6D87A7;           
$error: #811702;

然后,在我所有其他.SCSS文件的头文件中,我导入了主文件:

// When importing the master, you leave out the underscore, and it
// will look for a file with the underscore. This prevents the SCSS
// compiler from generating a CSS file from it.
@import "assets/master";

// Then do the rest of my CSS afterwards:
.text { color: $accent; }

重要的

在你的_master中除了变量、函数声明和其他SASS特性外,不要包含任何东西。scss文件。如果您包含实际的CSS,它将在导入主文件的每个文件中复制此CSS。

创建索引。SCSS,在那里你可以导入所有的文件结构。我将粘贴你我的索引从一个企业项目,也许它将帮助其他如何在css结构文件:

@import 'base/_reset';

@import 'helpers/_variables';
@import 'helpers/_mixins';
@import 'helpers/_functions';
@import 'helpers/_helpers';
@import 'helpers/_placeholders';

@import 'base/_typography';

@import 'pages/_versions';
@import 'pages/_recording';
@import 'pages/_lists';
@import 'pages/_global';

@import 'forms/_buttons';
@import 'forms/_inputs';
@import 'forms/_validators';
@import 'forms/_fieldsets';

@import 'sections/_header';
@import 'sections/_navigation';
@import 'sections/_sidebar-a';
@import 'sections/_sidebar-b';
@import 'sections/_footer';

@import 'vendors/_ui-grid';

@import 'components/_modals';
@import 'components/_tooltip';
@import 'components/_tables';
@import 'components/_datepickers';

你可以用gulp/grunt/webpack等方式观看,比如:

gulpfile.js

// SASS任务

var gulp = require('gulp');
var sass = require('gulp-sass');
//var concat = require('gulp-concat');
var uglifycss = require('gulp-uglifycss');
var sourcemaps = require('gulp-sourcemaps');

gulp.task('styles', function(){
    return gulp
            .src('sass/**/*.scss')
            .pipe(sourcemaps.init())
            .pipe(sass().on('error', sass.logError))
            .pipe(concat('styles.css'))
            .pipe(uglifycss({
                "maxLineLen": 80,
                "uglyComments": true
            }))
            .pipe(sourcemaps.write('.'))
            .pipe(gulp.dest('./build/css/'));
});

gulp.task('watch', function () {
    gulp.watch('sass/**/*.scss', ['styles']);
});

gulp.task('default', ['watch']);

如前所述,在新版本的SASS中不鼓励使用@import。在你的文件顶部使用@use "path to SASS partial file"代替

您需要将部分SASS文件导入(使用@use)到每个使用它的SASS文件中——而不仅仅是您的主文件。

假设我们有一个名为_variables的SASS文件。在一个叫做partials的文件夹中,我们想在header.scss中使用它。在header中。SCSS你写:

@use "partials/variables" as *

现在可以使用_variables中定义的所有变量。Scss *带$variable(没有前缀)。或者,也可以使用名称空间(如前面提到的Christian)

@use "partials/variables" as v

引用_variables中的变量。用v.$变量。

*注意,SASS编译器忽略下划线,因此不会为每个部分SASS文件生成单独的CSS文件。相反,您可以使用@use将它们全部导入到主SASS文件中。