I tried to add rounded corner on buttons by adding the following class:
.roundCorners {
border-collapse: separate !important;
border: 2px green solid !important;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
This works in the development design-time ide, but when I click test the buttons appear square as before.
Any ideas?