Trace:
Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
visionx:valo_style_templates [2022/06/03 10:16] admin |
visionx:valo_style_templates [2024/12/18 06:45] (current) admin |
||
---|---|---|---|
Line 14: | Line 14: | ||
If you want to use our style templates, do following: | If you want to use our style templates, do following: | ||
- | - Download the {{:visionx:visionx_style_templates_v1.2.zip|template archive}} | + | - Download the {{:visionx:visionx_style_templates_v1.8.zip|template archive}} |
- Extract the archive into the **WebContent** folder of your application, e.g. //<VisionX_dir>/rad/apps/vxdemo/WebContent// \\ (be careful because the existing application.css will be replaced) | - Extract the archive into the **WebContent** folder of your application, e.g. //<VisionX_dir>/rad/apps/vxdemo/WebContent// \\ (be careful because the existing application.css will be replaced) | ||
- Choose the right application style | - Choose the right application style | ||
Line 30: | Line 30: | ||
<file css application.css> | <file css application.css> | ||
- | @import url('theme-orange.css'); | + | @import url('./theme-orange.css'); |
- | /* @import url('theme-red.css'); */ | + | /* @import url('./theme-red.css'); */ |
- | /* @import url('theme-black.css'); */ | + | /* @import url('./theme-black.css'); */ |
- | /* @import url('theme-blue.css'); */ | + | /* @import url('./theme-blue.css'); */ |
:root { | :root { | ||
Line 206: | Line 206: | ||
<code css> | <code css> | ||
- | /* @import url('theme-orange.css'); */ | + | /* @import url('./theme-orange.css'); */ |
- | /* @import url('theme-red.css'); */ | + | /* @import url('./theme-red.css'); */ |
- | /* @import url('theme-black.css'); */ | + | /* @import url('./theme-black.css'); */ |
- | @import url('theme-blue.css'); | + | @import url('./theme-blue.css'); |
</code> | </code> | ||