我想保留一个中心的.scss文件,用于存储项目的所有SASS变量定义。
// _master.scss
$accent: #6D87A7;
$error: #811702;
$warning: #F9E055;
$valid: #038144;
// etc...
该项目将有大量的CSS文件,由于其性质。在一个位置声明所有项目范围的样式变量是很重要的。
在SCSS中有办法做到这一点吗?
我想保留一个中心的.scss文件,用于存储项目的所有SASS变量定义。
// _master.scss
$accent: #6D87A7;
$error: #811702;
$warning: #F9E055;
$valid: #038144;
// etc...
该项目将有大量的CSS文件,由于其性质。在一个位置声明所有项目范围的样式变量是很重要的。
在SCSS中有办法做到这一点吗?
当前回答
我用vite找到了vue3的解决方案。如果你正在使用dart-sass,你可以通过使用@forward和@use来绕过sass模块的全局限制。
_master.scss
$accent: #6D87A7;
$error: #811702;
$warning: #F9E055;
$valid: #038144;
// etc...
_global.scss
@forward '_master.scss';
// etc...
然后在vite.config.js下配置css选项为
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
additionalData: `
@use "./<path-to-file>/_globals.scss" as *;
`,
},
},
},
// etc...
});
正如在sass文档中提到的,当导入没有命名空间的模块时
不过,我们建议只对自己编写的样式表这样做;否则,他们可能会引入新成员,导致名称冲突!
然后,您可以在任何其他样式表或组件中使用其他@use模块,如下所示
// component file needing a function module
@use 'functions.scss';
其他回答
创建索引。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']);
我用vite找到了vue3的解决方案。如果你正在使用dart-sass,你可以通过使用@forward和@use来绕过sass模块的全局限制。
_master.scss
$accent: #6D87A7;
$error: #811702;
$warning: #F9E055;
$valid: #038144;
// etc...
_global.scss
@forward '_master.scss';
// etc...
然后在vite.config.js下配置css选项为
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
additionalData: `
@use "./<path-to-file>/_globals.scss" as *;
`,
},
},
},
// etc...
});
正如在sass文档中提到的,当导入没有命名空间的模块时
不过,我们建议只对自己编写的样式表这样做;否则,他们可能会引入新成员,导致名称冲突!
然后,您可以在任何其他样式表或组件中使用其他@use模块,如下所示
// component file needing a function module
@use 'functions.scss';
这个答案显示了我最终是如何使用它的,以及我遇到的额外陷阱。
我做了一个主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。
这个问题很久以前就有人问过了,所以我想我应该更新一下答案。
现在应该避免使用@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
如前所述,在新版本的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文件中。