Can I apply style (CSS) to a specific widget ( PopupPanel
) and not to an element? After all, PopupPanel
unfolds in a normal div.
PS Not for an instance, but for all instances of this widget.
If in the css project file override classes
.gwt-PopupPanel
.gwt-PopupPanel .popupContent
then these changes will affect all PopupPanel, except those on which the stylePrimaryName was applied (a property in UiBinder or a method somewhere in Java code) with a different style.
Source: https://ru.stackoverflow.com/questions/115220/
All Articles