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

CSS Expression to GSS for Conditional Property in GWT?

如何将以下 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%;
    }
}