Hi!
How can I set the button radius? May you help me, please?
I’m trying:
.borda {
border-radius: 10px;
}
It is working for textbox and panel.
Thanks,
Ulisses.
You can:
This is what a theme mixin would look like:
Add MyTheme.mixin.theme in /Themes
{
appearances:{
"button":{
"inherit":"button",
"states":{
"default":{
"styles": {
"radius": 5
}
}
}
}
}
}
This is the CssStyle option:
this.button1.CssStyle=”border-radius:5px”;
This is the CssClass option:
this.button1.CssClass=”borda”;
Please login first to submit.
