Define styles for pseudo classes

Support defining additional settings for pseudo classes.

If you have an element that you want to use as a button you can select it and then set properties for different pseudo states like hover, down and active.

You can do this now with the CSS template option. Select the item and then open the CSS template. Use the SELECTOR token and pseudo states to add classes.

For example to add a hover style select the element and in the CSS template enter:

{SELECTOR}:hover {
     outline: 1px solid blue;
}