| Summary: | The Sash-Handle vanishes when setting a custom theme | ||
|---|---|---|---|
| Product: | [RT] RAP | Reporter: | RĂ¼diger Herrmann <ruediger.herrmann> |
| Component: | RWT | Assignee: | Project Inbox <rap-inbox> |
| Status: | RESOLVED INVALID | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
That's expected. The fallback theme does not define an image for the Sash. If you register an empty theme, you don't get the RAP default theme, but just a set of minimal fallback values. If you want to extend the default theme, add a theme contribution to RWT.DEFAULT_THEME_ID. |
The sash handle (dotted image) isn't visible any more after setting a custom theme. Though the theme does not explicitly style the Sash or any of its sub-components. To reproduce, run an ApplicationConfiguration like this (the custom-theme.css is empty): public void configure( Application application ) { Map<String, String> properties = new HashMap<String, String>(); properties.put( WebClient.THEME_ID, "foo" ); application.addStyleSheet( "foo", "custom-theme.css" ); ... }