我想保留一个中心的.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中有办法做到这一点吗?
当前回答
在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;
}
希望它能有所帮助……
快乐编码:)
其他回答
你可以这样做:
我有一个名为utilities的文件夹,其中有一个名为_variables.scss的文件
在这个文件中,我像这样声明变量:
$black: #000;
$white: #fff;
那我就有风格了。我导入了所有其他SCSS文件,如下所示:
// Utilities
@import "utilities/variables";
// Base Rules
@import "base/normalize";
@import "base/global";
然后,在我导入的任何文件中,我都应该能够访问我已经声明的变量。
只需要确保在导入其他变量文件之前导入该变量文件。
如前所述,在新版本的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文件中。
这个答案显示了我最终是如何使用它的,以及我遇到的额外陷阱。
我做了一个主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']);
我用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';