我正在使用Netbeans& Maven的。 我在使用Vaadin Toolkit的CSS时遇到了一些问题。 一些基本问题......
似乎忽略了我的自定义CSS的每一行,我不知道为什么。
In" / VAADIN / themes / touchkit"我有4个css和scss文件。
addons.scss styles.css styles.scss touchkit.scss
基本上,我想要更改VerticalLayout或VerticalComponentGroup的背景。
所以我已经
了public class MainActivity extends Activity {
VideoView videoview;
Button button;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//videoview=(VideoView)findViewById(R.id.video);
//button=(Button)findViewById(R.id.button);
}
在touchkit.scss中
然后
@import "../valo/valo.scss";
@mixin touchkit {
@include valo;
.backColorGrey {
background-color: #0FD1B1;
}
}
什么都没发生。
我编写了主题 我已经尝试将代码放在其他scss文件中。 我已经下载了ruby来安装Sass。 我已经重新编译了主题,项目,清理,清洁和构建,重新编译了很多次......还有很多其他动作,但结果是一样的。 我把它放在了pom中
final VerticalLayout content = new VerticalLayout();
final VerticalComponentGroup content2 = new VerticalComponentGroup();
content.addStyleName("backColorGrey");
content2.addStyleName("backColorGrey");
什么都没发生。 它似乎忽略了任何css线......但它是一个如此基本的动作!!!! 令人沮丧的是,这完全是浪费时间。
坦率地说,我讨厌css。 有没有办法设置这个值忽略java代码的CSS? 比如.setBackgroundColor?