elm-css:elm-css 9.0中的mixins发生了什么变化?

时间:2017-07-05 00:39:42

标签: elm

当我从elm-css 8.x升级到9.0时,我的代码破了。看起来mixins不再出现在文档中。他们发生了什么,或者什么是mixins替换?

1 个答案:

答案 0 :(得分:3)

似乎MixinStyle替换了。您可以撰写Style来创建其他Style s(这实际上是mixins在预处理器中的用途,如Sass或更少)

这个榆树代码......

greenOnHover : Mixin
greenOnHover =
   mixin
        [ hover [ color (rgb 0 0 122) ]
        ]

应替换为

greenOnHover : Style
greenOnHover =
    batch
        [ hover [ color (rgb 0 0 122) ]
        ]

IndexOutOfBoundsException