Java GWT中条件属性的GSS CSS表达式?

Java GWT中条件属性的GSS CSS表达式?,java,html,css,gwt,google-closure,Java,Html,Css,Gwt,Google Closure,如何将以下GWT CSS部分转换为GWT GSS @if (test.mobile.client.Parameter.getWindowWidth() >= 414) { .previewBox { width: 33.333333%; } } @if (eval("test.mobile.client.Parameter.getWindowWidth() >= 414")) { .previewBox { width: 33.333333%;

如何将以下GWT CSS部分转换为GWT GSS

@if (test.mobile.client.Parameter.getWindowWidth() >= 414) {
 .previewBox {
    width: 33.333333%;
 }
}
@if (eval("test.mobile.client.Parameter.getWindowWidth() >= 414")) {
    .previewBox {
        width: 33.333333%;
    }
}