I was tasked with creating a front-end web application, and I'm trying to apply a CSS3 gradient on a button. I am using Eclipse with the GWT plugin and I am viewing the user interface in Google Chrome using the GWT plugin.
My problem is that GWT seems to remove spaces between brackets so that:
.gwt-Button { background: -moz-linear-gradient(top, white, #72C6E4 4%, #0C5FA5); background:-webkit-gradient(linear, left top, left bottom, from(white), to(#0C5FA5), color-stop(0.03, #72C6E4));
becomes:
.gwt-Button { background: -moz-linear-gradient(top,white,#72C6E44%,#0C5FA5); background:-webkit-gradient(linear,lefttop,lefbottom, from(white), to(#0C5FA5), color-stop(0.03, #72C6E4));
This makes them invalid. Is there any other way to do this, or perhaps prevent interference from removing spaces when compiling the application? Thanks.
css3 gwt
user703172
source share