- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前我有一个在 gwt 中使用 CssResource 的应用程序......
interface MyClientBundle extends ClientBundle{
@Source("images/one.png")
Image someImageThatAlwaysLooksTheSame();
@Source("images/two.png")
Image someImageThatDependingOnTheClientThemeChanges();
@Source("css/main.css")
MyCssResource css();
}
然后是CssResource接口(interface)
interface MyCssResource extends CssResource{
String someStyleThatNeverChanges();
String someStyleThatChangesDependingOnTheClient();
}
如果我覆盖 MyClientBundle 以创建名为 MyPinkThemedClientBundle 的接口(interface)
interface MyClientBundle extends ClientBundle{
@Source("images/one.png")
Image someImageThatAlwaysLooksTheSame();
@Source("images/**twoPinkVersion**.png")
Image someImageThatDependingOnTheClientThemeChanges();
@Source("css/**mainPinkVersion**.css")
MyPinkCssResource css();
}
当然 MyPinkCssResource 扩展了 MyCssResource
interface MyPinkCssResource extends MyCssResource{
}
我遇到的问题是,当我尝试编译它时,GWT 编译器提示“css/mainPinkVersion.css”缺少样式名称“someStyleThatNeverChanges”。我原以为 cssresource 接口(interface)会继承其父类(super class)的支持 css 文件。如果不是这种情况,是否有可能实现能够扩展 CssResource 并仅覆盖您关心的类的效果,否则使用父类(super class)的支持 .css 文件?
最佳答案
我几乎完全遇到了这个问题。看完想出的解决方案the @Import example in the GWT documentation如下。在您的 MyPinkThemedClientBundle
中,您需要将 css() 方法定义为:
@Source({"main.css", "css/**mainPinkVersion**.css"})
MyCssResource css();
如果您只是覆盖已经定义的 CSS 条目,而不是创建任何需要在您的代码中访问的新条目,那么您将不需要 MyPinkCssResource 类型。
关于gwt - 究竟如何重写 CssResource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5943895/
Feel free to skip straight to TL/DR if you're not interested in details of the question 简短的序言: 我最近决定
我一直在阅读 A Tour of Go学习Go-Lang到目前为止一切顺利。 我目前在 Struct Fields类(class),这是右侧的示例代码: package main import "fm
Last time I got confused顺便说一下PowerShell急切地展开集合,基思总结了它的启发式如下: Putting the results (an array) within a
我是一名优秀的程序员,十分优秀!