0
votes

I use ClientBundle and CssResource interfaces. All styles, that applies as class are work:

In css: .dialogVPanel { margin: 5px;}

In interface: String dialogVPanel();

But when I try to override default css of gwt widget, it don't work (no errors, but no effect). I try like this:

@external .gwt-DialogBox { width: 60px;}
1

1 Answers

5
votes

The syntax is:

@external gwt-DialogBox;

.gwt-DialogBox { width: 60px; }