在所有css文件中重用变量 - 使用postcss-cssnext,特别是使用css-modules的postcss-custom-properties

时间:2016-10-26 15:59:51

标签: reactjs webpack postcss react-boilerplate cssnext

我正在使用css-modules和postcss-cssnext,特别是它的postcss-custom-properties功能

我也在使用react-boilerplate(https://github.com/mxstbr/react-boilerplate/),这个非常好的样板附带了这些模块

我的文件夹结构是:

Main folder
    app
        containers
            App
                styles.css
                index.js
            HomePage
                styles.css
                index.js

        components
            Component1
                styles.css
                index.js
            Component2
                styles.css
                index.js

应用/ styles.css的

:root {
    --varA: #1eb3ab;
    --varB: #1eb3ab;
    --varC: #1eb3ab;
    --varD: #1eb3ab;
    --varE: #1eb3ab;

}

body {
    color: var(--varA)  /*works fine */
}

我想在App / styles.css中使用这些变量(或者我很乐意在其他地方定义它们,在这种情况下我该怎么做)在其他容器中使用组件

我试过(用于css-modules)

首页/ index.js

..
..

<div className={styles.myClass}> Content </div>

..

主页/ styles.css - 接近1

:root{
  --varA: tealish from "containers/App/styles.css";     /* DOESNT WORK */
}

.myClass {
    color: var(--varA)
}

主页/ styles.css - 方法2

.myClass {
    color: var(--varA from "containers/App/styles.css")     /* DOESNT WORK  AS WELL*/
}

最优雅的解决方案是什么?我希望将所有变量放在一个文件/一个地方,并在所有css文件中很好地使用它们

我还在postcss-custom-properties https://github.com/postcss/postcss-custom-properties#variables中看到了variables。但我不知道如何在我的webpack定义中使用postcss-cssnext

webpack.dev.babe.js - 如何在这里放置VARIABLES选项

// Process the CSS with PostCSS
  postcssPlugins: [
    postcssFocus(), // Add a :focus to every :hover
    cssnext({ // Allow future CSS features to be used, also auto-prefixes the CSS...
      browsers: ['last 5 versions', 'IE > 8'], // ...based on this browser list

      // I think I need to add some line here, but not sure what


    }),
    postcssReporter({ // Posts messages from plugins to the terminal
      clearMessages: true,
    }),
    postcssAnimation(),
  ],

2 个答案:

答案 0 :(得分:1)

我会推荐postcss-custom-properties“变量”选项。

您在文档中有一个示例

http://cssnext.io/usage/#features

cssnext({
  features: {
    customProperties: {
      variables: {
        mainColor: "red",
        altColor: "blue",
      }
    }
  }
})

答案 1 :(得分:0)

我通常在postcss-import的帮助下实现这一点,因此每个需要使用“变量”的模块都需要导入部分。

@import 'path/to/variables';

.myClass {
  color: var(--colorGray);
}

该方法适用于自定义属性,但也适用于custom property sets

类似question