Search code examples
javahtmlcssgwtgoogle-closure

CSS Expression to GSS for Conditional Property in GWT?


How can I transform the following GWT CSS part into the GWT GSS?

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

Solution

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