So the installation of the jar went fine and the theme is selectable OK
from the Themes node --meaning it should not have a red x on it. Did you notice any error in the log? This doesn't solve this particular issue but for a simple plain button you can use the one in the Standard category in the Palette.
/krys
installation went fine, theme is selectable.
If I set this theme in my webapp nothing changes, even trying to set button's background yellow , nothing happens , well something happens:
button doesn't change its background color, but if I edit button's label, around the text it becomes yellow ....
I am assuming you are on Creator 2.1? If you want to override a style in this or any component, you want to understand the css underneath. With the component selected in the designer, press
ctrl+alt+shift and you will see a layout inspector window come up in the projects window tab. Check the "Computed Styles" in the properties window. For a regular button you see that the active css is background-color as well as background-image among others. Although you set the background-color, you also need to override the backgroud-image by setting it to null in the style property. I see that the neutered theme has it set to "none", but for some reason you need to follow the structure of the components css and explicitly set it to null to get the
default button text to show the background color you want.
/krys