Need app-wide CSS constants in GWT

前端 未结 3 1540
情话喂你
情话喂你 2021-02-04 15:53

I\'d like to define some colours as constants in a GWT CssResource, and use those constants throughout my application; but I don\'t know how to do that.

I\'ll tell you w

3条回答
  •  北恋
    北恋 (楼主)
    2021-02-04 16:27

    You should be able to use

    
      @IMPORT url("../../../global.css");
      .mainPanel {
        background:{resources.css.JUNGLEGREEN};
        ...
      }
    
    

提交回复
热议问题