【发布时间】:2018-05-05 05:03:00
【问题描述】:
所以我有点困惑为什么设置背景图像不起作用。我可以使用其他 SCSS 方法(例如 .top 等)来设置颜色等,但是当通过 SCSS 拉取图像时,应用程序会出现错误。
我的主题:
@import "../valo/valo.scss";
@import "../valo/fonts/fonts.scss";
@import "../valo/styles.css";
@mixin mytheme {
@include valo-components;
@include valo-common;
@include vaadin-icons;
@include valo;
background-color: lawngreen;
}
styles.scss:
@import "mytheme.scss";
@import "addons.scss";
@import "../valo/styles.css";
// This file prefixes all rules with the theme name to avoid causing conflicts with other themes.
// The actual styles should be defined in mytheme.scss
.mytheme {
@include addons;
@include valo;
@include mytheme;
.backgroundImage{
background: url("img/background.jpg ") ;
}
.v-view {
}}
应用在生产模式下运行,图片文件路径如下:
D:\Programming\app\src\main\WebContent\VAADIN\themes\mytheme\img\background.jpg
错误:
INFO 16672 --- [nio-8080-exec-9] com.vaadin.server.VaadinServlet :
Requested resource
[/VAADIN/themes/mytheme/VAADIN/themes/mytheme/img/background.jpg] not found from filesystem or through class loader. Add widgetset and/or theme JAR to your classpath or add files to WebContent/VAADIN folder.
有人知道这里发生了什么吗?
【问题讨论】:
标签: java css vaadin scss-mixins