@Retention(value=RUNTIME) @Target(value=TYPE) @Documented @Repeatable(value=CssImport.Container.class) public @interface CssImport
The CSS files should be located in the place as JS module files:
frontend
directory in your root project folder in case of
WAR project
META-INF/resources/frontend
directory (inside a project
resources folder) in case of JAR project (if you are using Maven this is
src/main/resources/META-INF/resources/frontend
directory).
The annotation doesn't have any effect in the compatibility mode: use it only for Polymer 3 templates.
Depending on the attributes provided, the CSS content will be appended in different ways:
<custom-style> <style> CSS-CONTENT </style> </custom-style>
<custom-style> <style include="INCLUDE-VALUE"> CSS-CONTENT </style> </custom-style>
<dom-module id="ID-VALUE"> <template> <style include="INCLUDE-VALUE"> CSS-CONTENT </style> </template> </dom-module>
<dom-module id="RANDOM-ID" theme-for="THEME-FOR-VALUE"> <template> <style include="INCLUDE-VALUE"> CSS-CONTENT </style> </template> </dom-module>
JsModule
Modifier and Type | Required Element and Description |
---|---|
String |
value
Location of the file with the CSS content.
|
Modifier and Type | Optional Element and Description |
---|---|
String |
id
The 'id' of the new 'dom-module' created.
|
String |
include
The 'id' of a module to include in the generated 'custom-style'.
|
String |
themeFor
The tag name of the themable element that the generated 'dom-module' will
target.
|
public abstract String value
public abstract String include
public abstract String id
public abstract String themeFor
Copyright © 2019. All rights reserved.